blob: c262a462bb046947d52ea34bce24925add533b19 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 7007615
* @summary java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
* @author dlsmith
* @compile AccessibilityCheck01.java
*/
public class AccessibilityCheck01 extends p2.E {
String m(Object o) { return "hi"; } // this is okay
int m(String s) { return 3; } // this overrides m(String) illegally
}