mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
9 lines
92 B
Plaintext
Vendored
9 lines
92 B
Plaintext
Vendored
// "Create parameter 'b'" "true"
|
|
|
|
open class A(val a: Int) {
|
|
|
|
}
|
|
|
|
class B(b: Int) : A(b) {
|
|
|
|
} |