Files

7 lines
119 B
Java

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