Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
kt3993.fir.kt
blob: 764114ff5507a50a02da15354170df1c185e2e46 [
file
]
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
}
}