blob: c3f080d0d284399a23bed3fb8a396d7b8e5cf04d [file] [log] [blame]
package p1;
import p0.Foo;
class Bar {
/**
* @param foo
*/
public static void bar(Foo foo) {
foo.hello();
}
}