mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
20 lines
631 B
Plaintext
Vendored
20 lines
631 B
Plaintext
Vendored
public final class PropertyWithAnnotationKt {
|
|
@org.jetbrains.annotations.NotNull @TestAnnotation private static final var prop1: int = 0
|
|
@org.jetbrains.annotations.NotNull 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(@org.jetbrains.annotations.NotNull value: int) : void {
|
|
field = value
|
|
}
|
|
}
|
|
|
|
public abstract annotation TestAnnotation {
|
|
}
|