2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2015-01-27 23:11:57 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2017-07-03 07:28:30 +00:00
|
|
|
* @bug 6359949 8068836
|
|
|
|
* @summary (at)Override of static methods shouldn't be accepted (compiler should issue an error)
|
2015-01-27 23:11:57 +00:00
|
|
|
* @compile/fail/ref=T6359949a.out -XDrawDiagnostics T6359949a.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Example {
|
|
|
|
public static void example() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Test extends Example {
|
|
|
|
@Override
|
|
|
|
public static void example() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|