Files
kotlin/compiler/testData/codegen/box/callableReference/function/nestedConstructorFromTopLevelOneStringArg.kt
2019-11-19 11:00:09 +03:00

7 lines
117 B
Kotlin
Vendored

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