Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
addJavaMethodParameter.before.Dependency.java
blob: 905b6820a9e39d847042cf1851afa4b63588b53a [
file
] [
log
] [
blame
]
class
Foo
{
static
void
foo
(
int
n
,
int
m
)
{
}
}
class
Test
{
static
void
test
()
{
Foo
.
foo
();
Foo
.
foo
(
1
);
Foo
.
foo
(
1
,
2
);
Foo
.
foo
(
1
,
2
,
3
);
Foo
.
foo
(
4
,
5
,
6
);
}
}