blob: 3c62f948f1d62f905b46d75d2bb670212393bb97 [file]
// !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"
}