blob: 94b52a07f28e64cb3735c379d816de57c489d1ef [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");
}
}