blob: d90fc8cbf2b51d021515688e864b93dd5c1ff527 [file] [log] [blame]
// "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)
}