blob: 2352671101d62fabb7cc91343ab00aea2ef78d64 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8080726
* @summary Redundant error message on private abstract interface method with body.
* @compile/fail/ref=Private10.out -XDrawDiagnostics Private10.java
*/
public class Private10 {
interface I {
private abstract void foo() {}
}
class C {
private abstract void foo() {}
}
}