Files
kotlin/compiler/testData/codegen/box/callableReference/function/nestedConstructorFromTopLevelOneStringArg.kt
2018-06-28 12:26:41 +02:00

7 lines
113 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class A {
class Nested(val result: String)
}
fun box() = (A::Nested)("OK").result