Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
inlineClasses
/
boxMethodCalledByInlineClass.kt
blob: 8c6c0d5ad4f63383da0082084766b5103f114e33 [
file
] [
log
] [
blame
]
// !LANGUAGE: +InlineClasses
// 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;