14 lines
109 B
Kotlin
14 lines
109 B
Kotlin
package foo
|
|
|
|
open class A() {
|
|
var a = 3;
|
|
}
|
|
|
|
class B() : A() {
|
|
|
|
}
|
|
|
|
fun box() : Int {
|
|
return (B().a)
|
|
}
|