mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Remove INSTANCE field for local object declarations Remove private suspend functions create from UL Add correct extension function parameter name Add support for setparam annotation modifier
15 lines
315 B
Java
Vendored
15 lines
315 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);
|
|
|
|
public final int getHello();
|
|
|
|
public final void setHello(@Anno() int);
|
|
|
|
} |