Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
codegen
/
box
/
smartCasts
/
implicitToGrandSon.kt
blob: 8970e5fa7165e5968d4b12a6f081a6636efde510 [
file
]
open
class
A
{
open fun foo
()
=
"FAIL"
fun bar
()
=
if
(
this
is
C
)
foo
()
else
foo
()
}
open
class
B
:
A
()
open
class
C
:
B
()
{
override
fun foo
()
=
"OK"
}
fun box
()
=
C
().
bar
()