Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt3993.fir.kt
T

10 lines
209 B
Kotlin
Vendored

class User(val login : Boolean) {}
fun currentAccess(user: User?): Int {
return when {
user == null -> 0
// We should get smartcast here
user.login -> 1
else -> -1
}
}