b0a7706812
#KT-5445 Obsolete
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()
|
|
}
|