Files
kotlin/compiler/testData/codegen/boxMultiFile/protectedFromLambda/A.kt
2016-02-02 12:43:52 +03:00

8 lines
122 B
Kotlin
Vendored

// A.kt
package first
open class A {
protected open fun test(): String = "FAIL (A)"
}
fun box() = second.C().value()