7d59c7689c
Due to the direct invoke optimization, most callable reference tests were not generating callable references/lambdas.
24 lines
632 B
Kotlin
Vendored
24 lines
632 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Z<T: Int>(val x: T)
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class L<T: Long>(val x: T)
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class S<T: String>(val x: T)
|
|
|
|
fun Z<Int>.test() = x
|
|
fun L<Long>.test() = x
|
|
fun S<String>.test() = x
|
|
|
|
fun box(): String {
|
|
if (Z(42)::test.let { it.invoke() } != 42) throw AssertionError()
|
|
if (L(1234L)::test.let { it.invoke() } != 1234L) throw AssertionError()
|
|
if (S("abcdef")::test.let { it.invoke() } != "abcdef") throw AssertionError()
|
|
|
|
return "OK"
|
|
} |