be664e26f7
#KT-18232 Fixed
22 lines
338 B
Java
Vendored
22 lines
338 B
Java
Vendored
@interface TestAnnotation {
|
|
}
|
|
|
|
public class Test {
|
|
@TestAnnotation
|
|
private String arg;
|
|
|
|
public Test(@TestAnnotation String arg) {
|
|
this.arg = arg;
|
|
}
|
|
|
|
@TestAnnotation
|
|
public String getArg() {
|
|
return arg;
|
|
}
|
|
|
|
@TestAnnotation
|
|
public void setArg(String arg) {
|
|
this.arg = arg;
|
|
}
|
|
}
|