Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
16 lines
323 B
Java
16 lines
323 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8035956
|
|
* @summary javac, incomplete error message
|
|
* @author kizune
|
|
*
|
|
* @run compile/fail/ref=IncompleteMessageOverride.out -XDrawDiagnostics IncompleteMessageOverride.java
|
|
*/
|
|
|
|
class Super {
|
|
static void m() {}
|
|
}
|
|
|
|
class Sub extends Super {
|
|
private static void m() {}
|
|
}
|