Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
falseReceiverSmartCast.fir.kt
blob: 2f6711d7a70450cc0d8753d165fea8e5eb1e0f23 [
file
]
open
class
SuperFoo
{
public
fun bar
():
String
{
if
(
this
is
Foo
)
{
superFoo
()
return
baz
()
}
return
baz
()
}
public
fun baz
()
=
"OK"
}
class
Foo
:
SuperFoo
()
{
public
fun superFoo
()
{}
}