blob: 1ad0474471a80601763b50e6d38827e9ed1087a2 [file] [log] [blame]
public class ResolveLocalMethod {
void bar() {
class Y {
void foo(int i) {
}
void foo(String s) {
}
void bar() {
new Y().foo("");
}
}
}
}