Files
kotlin-fork/j2k/testData/fileOrElement/annotations/annotationFromConstructorParamToProperty.java
T
2017-01-10 16:20:58 +03:00

16 lines
133 B
Java
Vendored

@interface A {
}
@interface B {
}
public class U {
@B
public int i;
public U(@A int i) {
this.i = i;
}
}