Files
kotlin-fork/plugins/uast-kotlin/testData/PropertyDelegate.kt
T
Jinseong Jeon 7f627ab480 FIR UAST: track all legacy test data since facade class is converted
These are mostly mechanical changes.
2021-05-06 20:19:29 +02:00

9 lines
172 B
Kotlin
Vendored

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