blob: aa827bcea4541dd90335814b217d308789c756e7 [file] [log] [blame]
class Foo {
public void foo() {}
public static void foo(String... s){}
}
class A {
{
Foo.<error descr="Non-static method 'foo()' cannot be referenced from a static context">foo</error>();
}
}