d94912ed62
KT-44278 KT-26060 KT-42621
9 lines
139 B
Kotlin
Vendored
9 lines
139 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// JVM_TARGET: 1.8
|
|
// LAMBDAS: INDY
|
|
|
|
class C(val x: String) {
|
|
fun test() = { x }
|
|
}
|
|
|
|
fun box() = C("OK").test()() |