blob: 22305b39037013bf4c7dbfaf0c13afe599626a48 [file] [log] [blame]
package p;
public class Foo {
// Test warnings for incorrectly qualified static calls
static void foo() { // <- invoke here (change name!)
}
/* (non-Javadoc)
* @see p.Foo#foo()
*/
public static void bar() {
Foo.foo();
}
Foo getFoo() {
return new Foo();
}
{
Foo.bar();
Foo.bar();
}
}