Files
Bas Leijdekkers a37b504489 [java] consider value() method used in the editor when likely @Repeatable annotation (IDEA-232566)
GitOrigin-RevId: 249dc859a3db5ee9a079be3c598816e834ad7f94
2024-05-24 20:34:32 +00:00

8 lines
140 B
Java

class Test {
public static void main(String[] args) {
class Inner1{};
class <warning>Inner2</warning> {};
new Inner1();
}
}