Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/anySuperCall.kt
T
2020-03-24 18:58:19 +03:00

12 lines
180 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM
inline class A(val x: Int) {
fun f(): Int = super.hashCode()
}
fun box(): String {
val a = A(1).f()
return "OK"
}