jdk-24/test/langtools/tools/javac/LocalInterface.java
Vicente Romero 8bde2f4e3d 8255013: implement Record Classes as a standard feature in Java, follow-up
Co-authored-by: Vicente Romero <vromero@openjdk.org>
Co-authored-by: Harold Seigel <hseigel@openjdk.org>
Co-authored-by: Chris Hegarty <chegar@openjdk.org>
Reviewed-by: jlahoda
2020-10-28 17:18:46 +00:00

14 lines
292 B
Java

/**
* @test /nodynamiccopyright/
* @bug 8242478 8246774
* @summary test for local interfaces
* @compile/fail/ref=LocalInterface.out -XDrawDiagnostics -source 15 LocalInterface.java
* @compile LocalInterface.java
*/
class LocalInterface {
void m() {
interface I {}
}
}