Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
falseSmartCast.kt
blob: ae68e2c2c8da6f5335be96778bec0584dff21c95 [
file
] [
log
] [
blame
]
open
class
SuperFoo
{
public
fun bar
()
{
if
(
this
is
Foo
)
{
baz
()
}
}
public
fun baz
()
{}
}
class
Foo
:
SuperFoo
()
// 1 INVOKEVIRTUAL SuperFoo.baz
// 0 CHECKCAST Foo
// 0 INVOKEVIRTUAL Foo.baz