0067b70725
Introducing an internal API for Scope; rewriting ImportScopes to extend CompoundScopes. Co-authored-by: Maurizio Cimadamore <maurizio.cimadamore@oracle.com> Reviewed-by: mcimadamore, jjg, jfranck
16 lines
211 B
Java
16 lines
211 B
Java
package p1;
|
|
|
|
import p2.*;
|
|
|
|
public class String {
|
|
public static void test() { }
|
|
}
|
|
|
|
class Test1 {
|
|
private void test() {
|
|
String.test();
|
|
Object.test();
|
|
Boolean.valueOf(true);
|
|
}
|
|
}
|