Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
inlineClasses
/
boxMethodCalledByInlineClass.kt
blob: b4d4826dbba95e84cd5cdf58cdbabc69079fce3b [
file
]
// FILE: Z.kt
inline
class
Z
(
val x
:
Int
)
// FILE: Test.kt
fun test
():
Any
=
Z
(
42
)
// @TestKt.class:
// 0 INVOKESTATIC Z\$Erased\.box
// 0 INVOKESTATIC Z\-Erased\.box
// 1 INVOKESTATIC Z\.box-impl \(I\)LZ;