blob: 38c79b384c4416f741d696d5b975d0b438040d99 [file] [log] [blame]
package p1;
import p2.*;
public class String {
public static void test() { }
}
class Test1 {
private void test() {
String.test();
Object.test();
Boolean.valueOf(true);
}
}