138370ce5b
#KT-6604 In Progress
9 lines
169 B
Kotlin
Vendored
9 lines
169 B
Kotlin
Vendored
// "Move to constructor parameters" "true"
|
|
// SHOULD_FAIL_WITH: Duplicating parameter 'n'
|
|
open class A(n: Int) {
|
|
<caret>val n: Int
|
|
}
|
|
|
|
fun test() {
|
|
val a = A(0)
|
|
} |