Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
kt5155WhenBranches.fir.kt
blob: 69c9c86f1d4ecd6d5a443c0336a8b7dcfeee2f90 [
file
]
//KT-5155 Auto-casts do not work with when
fun foo
(
s
:
String
?)
{
when
{
s
==
null
->
1
s
.
foo
()
->
2
else
->
3
}
}
fun
String
.
foo
()
=
true