Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
implicitThisOnRefInLambdaInSmartcast.fir.kt
blob: fff5a9bf1637dd2ee659a3d2fdcd3241764ea407 [
file
]
fun
Any
.
test
()
{
val x
:
()
->
Int
=
when
(
this
)
{
is
String
->
{
{
length
}
}
else
->
{
{
1
}
}
}
<!
UNRESOLVED_REFERENCE
!>
length
<!>
}