Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
>)
{}