mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
8 lines
256 B
Java
8 lines
256 B
Java
class C {
|
|
@interface TestAnnotation {
|
|
int[] value();
|
|
}
|
|
|
|
@TestAnnotation({0, 1<warning descr="Trailing comma in annotation array initializer may cause compilation error in some Javac versions (e.g. JDK 5 and JDK 6).">,</warning>})
|
|
void m() { }
|
|
} |