mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 12:09:14 +00:00
10 lines
288 B
Java
10 lines
288 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8030714
|
|
* @summary make sure attribute and flow is skipped for implicit classes
|
|
* @compile/ref=SkipAttrFlowGenForImplicits.out -XDverboseCompilePolicy -implicit:none SkipAttrFlowGenForImplicits.java
|
|
*/
|
|
class Explicit {
|
|
Implicit implicit;
|
|
}
|