Files
kotlin-fork/plugins/uast-kotlin/testData/PropertyWithAnnotation.render.txt
T
2018-01-12 13:52:58 +03:00

16 lines
486 B
Plaintext
Vendored

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