Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 21df34a1777baf3b901de68a2e5b8af78fe6329a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package b5;
/* Test case for bug 9642 Search - missing inaccurate type matches */
import x.y.Zork;
public class A {
  {
    Zork[] zork = new Zork[0];
    int i = Zork.foo;
  }

}

Back to the top