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