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: e997d5fe99e8f0be9548c71faf2afc739a62681e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package c3;
/* Test case for bug 18418  search: searchDeclarationsOfReferencedTypes reports import declarations  */
import c2.A;
import c2.*;
import c2.B;
public class C{
	A a;
	c2.A c2a;
	B b;
	c2.B c2B;
}

Back to the top