Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/checkCallingMembersInsideInlineClass.kt
T
2021-10-11 12:09:52 +03:00

26 lines
583 B
Kotlin
Vendored

// WITH_RUNTIME
@Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE")
@kotlin.jvm.JvmInline
value class Foo(val x: Int) {
fun empty() = ""
fun withParam(a: String) = a
fun withInlineClassParam(f: Foo) = f.toString()
fun test(): String {
val a = empty()
val b = withParam("hello")
val c = withInlineClassParam(this)
return a + b + c
}
override fun toString(): String {
return x.toString()
}
}
fun box(): String {
val f = Foo(12)
return if (f.test() != "hello12") "fail" else "OK"
return "OK"
}