blob: e88cd8736fb6c4a93a27bf32b4f19c336f5c66ef [file] [log] [blame]
package annotator.tests;
import java.util.List;
public class TypeCastGeneric {
public void foo(Object o) {
List<Integer> i = (List<Integer>) o;
System.out.println(i);
}
}