Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
falseReceiverSmartCast.kt
blob: 1909527cc42bf6d46f083c7c2deabdc479151869 [
file
]
open
class
SuperFoo
{
public
fun bar
():
String
{
if
(
this
is
Foo
)
{
<!
DEBUG_INFO_IMPLICIT_RECEIVER_SMARTCAST
!>
superFoo
<!>()
return
baz
()
}
return
baz
()
}
public
fun baz
()
=
"OK"
}
class
Foo
:
SuperFoo
()
{
public
fun superFoo
()
{}
}