Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
moveInstanceMethod
/
SameNamesRecursion.java
blob: 432d05cc81817d42619de68dbd7219b3191e421e [
file
] [
log
] [
blame
]
public
class
A
{
void
f
<
caret
>
oo
(
B b
)
{
b
.
foo
(
""
);
if
(
false
)
{
foo
(
b
);
}
}
}
class
B
{
void
foo
(
String
s
)
{
System
.
out
.
println
(
s
);
}
}