Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
moveToConstructorParameters
/
memberPropertyInClassNameClash.kt
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
)
}