Files
kotlin/compiler/testData/asJava/ultraLightClasses/annotationWithSetParamPropertyModifier.java
Igor Yakovlev 00d9da53f5 Fix invalid signature for generic UL method
Fixed #KT-38348
2020-04-22 14:01:13 +03:00

15 lines
360 B
Java
Vendored

@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Anno /* Anno*/ {
}
public final class TestClass /* TestClass*/ {
private int hello;
@null()
public TestClass(int);// .ctor(int)
public final int getHello();// getHello()
public final void setHello(@Anno() int);// setHello(int)
}