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