blob: d3e1b6fd93fa81acdbf72532d5f0f697afa349c5 [file] [log] [blame]
public class Client {
public void bar() {
GenericType<Integer> list = new Server().foo();
System.out.println("list = " + list);;
}
public static void main(String[] args){
new Client().bar();
}
}