Files
kotlin-fork/idea/testData/quickfix/moveToConstructorParameters/memberPropertyInClassNameClash.kt
T
2015-11-16 11:30:02 +03:00

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