blob: d088ee1e8f3d2ed94df25c06ca5bae7cfc9dabbd [file] [log] [blame]
package test0045;
class B {
<Z> void foo(Z z) {
System.out.println(z);
}
}
public class X {
public static void main(String[] args) {
B b = new B();
b.<String>foo("SUCCESS");
}
}