Files
kotlin-fork/idea/testData/intentions/branched/doubleBangToIfThen/topLevelValCustomGetter.kt
T
2015-12-17 11:11:23 +03:00

8 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
val a: String?
get() = ""
fun main(args: Array<String>) {
val x = a<caret>!!
}