138370ce5b
#KT-6604 In Progress
9 lines
120 B
Plaintext
Vendored
9 lines
120 B
Plaintext
Vendored
// "Move to constructor parameters" "true"
|
|
open class A(val n: Int) {
|
|
}
|
|
|
|
class B : A(0)
|
|
|
|
fun test() {
|
|
val a = A(0)
|
|
} |