mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
// +JDK
|
|
|
|
class Foo1() : java.util.ArrayList<Int>()
|
|
|
|
open class Bar() {
|
|
fun v() : Int = 1
|
|
val v : Int = 1
|
|
}
|
|
|
|
class Barr() : Bar() {}
|