Files

7 lines
112 B
Java

@interface MyAnnotation {
int value();
String name();
}
@MyAnnotation(value = 0, n<caret>)
class MyClass {}