blob: 577710ba32f3fb832978de2c511cb41ec9917db1 [file] [log] [blame]
class Test {
public <T> void foo(T p) {
System.out.println(p.getClass().getName());
}
public static void main(String[] args) {
new Test().foo(10f);
}
}