334ae82b04
This reverts commit 2f366b8209206b32792919f35f896fc63ad4b0e5.
31 lines
727 B
Plaintext
Vendored
31 lines
727 B
Plaintext
Vendored
public abstract annotation MyAnnotation {
|
|
}
|
|
|
|
public abstract annotation MyAnnotation2 {
|
|
}
|
|
|
|
public abstract annotation MyAnnotation3 {
|
|
}
|
|
|
|
public abstract annotation MyAnnotation4 {
|
|
}
|
|
|
|
public abstract annotation MyAnnotation5 {
|
|
}
|
|
|
|
public final class Test1 {
|
|
private var bar: int
|
|
public final fun getBar() : int = UastEmptyExpression
|
|
public final fun setBar(p: int) : void = UastEmptyExpression
|
|
public fun Test1(bar: int) = UastEmptyExpression
|
|
}
|
|
|
|
public final class Test2 {
|
|
private var bar: int
|
|
@MyAnnotation
|
|
public final fun getBar() : int = UastEmptyExpression
|
|
@MyAnnotation2
|
|
public final fun setBar(p: int) : void = UastEmptyExpression
|
|
public fun Test2(bar: int) = UastEmptyExpression
|
|
}
|