blob: 702da7216d1665628ad34caf6b53dae186decbb3 [file] [log] [blame]
class Foo {
static void foo(int n) {
}
}
class Test {
static void test() {
Foo.foo();
Foo.foo(1);
Foo.foo(1);
Foo.foo(3);
}
}