260c549cd7
and `KotlinNullabilityUAnnotation` now is created for every `AbstractKotlinUVariable`
8 lines
171 B
Kotlin
Vendored
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 } |