blob: 1f3aeba4821f68b93048a1987cddbec8b95f176b [file] [log] [blame]
public interface Test {
void foo(String s);
}
class TestImpl implements Test {
void foo(String s){}
}