Files
kotlin-fork/idea/testData/intentions/branched/ifThenToSafeAccess/thenAndElseBothNull.kt
T
Valentin Kipyatkov 21c2268f70 Protection against "<caret>" missing in test data
Many incorrect tests fixed
2016-09-27 18:05:26 +03:00

11 lines
166 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun main(args: Array<String>) {
val foo: String? = "foo"
<caret>if (foo == null) {
null
}
else {
null
}
}