Files
kotlin/compiler/testData/codegen/boxMultiFile/kt5445_2/1.kt
2015-12-17 09:50:39 +03:00

14 lines
147 B
Kotlin
Vendored

package test2
import test.A
class C : A() {
fun a(): String {
return this.s
}
}
public fun box(): String {
return C().a()
}