7f627ab480
These are mostly mechanical changes.
9 lines
172 B
Kotlin
Vendored
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 }
|