Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/checkCallingMembersInsideInlineClassGeneric.kt
T
2022-02-15 08:11:13 +01:00

27 lines
622 B
Kotlin
Vendored

// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
OPTIONAL_JVM_INLINE_ANNOTATION
value class Foo<T: Int>(val x: T) {
fun empty() = ""
fun withParam(a: String) = a
fun withInlineClassParam(f: Foo<T>) = 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"
}