Files
kotlin-fork/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt.172
T
Nikolay Krasko c106c6a5d2 172: Revert "UAST: Fix testPropertyWithAnnotation"
This reverts commit 36a405cb55198592ee017c7eed9bd50fd6433f22.
2018-04-11 16:28:07 +03:00

20 lines
510 B
Plaintext
Vendored

public final class PropertyWithAnnotationKt {
private static final var prop1: int = 0
private static var prop3: int = 0
public static final fun getProp1() : int = UastEmptyExpression
@TestAnnotation
public static final fun getProp2() : int {
return 0
}
public static final fun getProp3() : int {
return 0
}
@TestAnnotation
public static final fun setProp3(value: int) : void {
field = value
}
}
public abstract annotation TestAnnotation {
}