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) {
|
|
|
|
} |