blob: 37e3292871196aff79651ff909c1a7a445f6ccb9 [file] [log] [blame]
fun foo(): Int {
val s: String? = ""
return if (true) {
<selection>s!!.length</selection>
} else {
s!!.length
}
}