Files
kotlin-fork/compiler/testData/codegen/bytecodeText/inlineClasses/noBoxingInMethod.kt
T
2020-11-02 10:50:00 +01:00

5 lines
119 B
Kotlin
Vendored

inline class IC(val value: Int) {
inline fun toLong(): Long = this.value.toLong()
}
// 0 INVOKESTATIC IC\.box-impl