Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
removeJavaMethodParameter.after.Dependency.java
blob: 702da7216d1665628ad34caf6b53dae186decbb3 [
file
] [
log
] [
blame
]
class
Foo
{
static
void
foo
(
int
n
)
{
}
}
class
Test
{
static
void
test
()
{
Foo
.
foo
();
Foo
.
foo
(
1
);
Foo
.
foo
(
1
);
Foo
.
foo
(
3
);
}
}