Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
removeConstructorParameter.kt
blob: 8d205f303cfe44ba4e15997201c0f6bdb576c71c [
file
] [
log
] [
blame
]
// "Remove parameter 'x'" "true"
// DISABLE-ERRORS
open
class
Base
(
var
x
:
Int
)
{
val y
=
Base
(
1
);
fun f
()
{
val
base
=
Base
(
1
,
2
);
}
}
open
class
Inherited
(
x
:
Int
)
:
Base
(<
caret
>)
{}