Files
kotlin-fork/plugins/uast-kotlin/testData/PropertyDelegate.kt
T
Nicolay Mitropolsky 260c549cd7 Uast: AbstractKotlinUVariable annotations now are retrieved from Kotlin Psi, not from compiled (KT-21025)
and `KotlinNullabilityUAnnotation` now is created for every `AbstractKotlinUVariable`
2018-01-12 13:54:29 +03:00

8 lines
171 B
Kotlin
Vendored

val sdCardPath by lazy { "/sdcard" }
fun localPropertyTest() {
val sdCardPathLocal by lazy { "/sdcard" }
}
@delegate:Suppress
val annotatedDelegate by lazy { 1 + 1 }