Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
inlineClasses
/
nonOverridingMethodsAreCalledByInlineClass.kt
blob: 60b8693f2d3069a2c189d1352a004a773f478556 [
file
]
inline
class
Z
(
val x
:
Int
)
{
fun foo
()
{}
}
fun testZ
(
z
:
Z
)
=
z
.
foo
()
fun testNZ
(
z
:
Z
?)
=
z
?.
foo
()
// 0 INVOKESTATIC Z\$Erased\.foo
// 0 INVOKESTATIC Z\-Erased\.foo
// 2 INVOKESTATIC Z\.foo-impl \(I\)V