Files
kotlin-fork/nj2k/testData/newJ2k/annotations/annotationFromConstructorParamToProperty.java
T
2019-04-03 11:24:19 +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;
}
}