blob: ad8a254f6b7354a7a6748f4b6e356adc16d4ba42 [file] [log] [blame]
package p;
public class Foo {
// Test error, method already exists
void foo(p.Bar bar, String foo)
{
new Bar().foo(null); // <- invoke here with same name and target type Foo
}
}