mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
147 B
Kotlin
Vendored
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()
|
|
}
|