Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
removeFunctionFirstParameter.kt.after
blob: cf636f4f4ecd1a101720a479e9026d27e2938fd7 [
file
] [
log
] [
blame
]
// "Remove parameter 'x'" "true"
// DISABLE-ERRORS
fun foo
(
y
:
Int
)
{
foo
();
foo
(
1
);
foo
(
2
);
foo
(
2
,
3
,
sdsd
);
}