35505007d2
* Fixes to tests * RunKonanTest runs tests build with TestRunner * Standalone tests
18 lines
212 B
Kotlin
18 lines
212 B
Kotlin
import a.*
|
|
|
|
open class C: B() {
|
|
override val x: Int = 156
|
|
|
|
fun foo() {
|
|
println(x)
|
|
|
|
println(super<B>.x)
|
|
bar()
|
|
}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val c = C()
|
|
c.foo()
|
|
}
|