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