blob: 0927aa1916d3d3616f9643170bdb7ce2ab749d34 [file] [log] [blame]
public class ClientImpl extends Client {
public Runnable foo() {
return new Test();
}
public static void main(String[] args) {
new ClientImpl();
}
}