mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
133 B
Kotlin
10 lines
133 B
Kotlin
|
|
class Foo1() : java.util.ArrayList<Int>()
|
|
|
|
open class Bar() {
|
|
fun v() : Int = 1
|
|
val v : Int = 1
|
|
}
|
|
|
|
class Barr() : Bar() {}
|