blob: 76fdc780dad306e51f9ff264b12afd61fa5e632e [file] [log] [blame]
class Client{
public static void main(String[] args) {
Server server = new Server() {
public void foo() {
System.out.println("foo called");
}
};
server.foo();
}
}