mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
283 B
Java
14 lines
283 B
Java
public class Test<R> {
|
|
|
|
private R getR() {
|
|
return null;
|
|
}
|
|
|
|
public <T extends CharSequence> void main(String[] args, T param) {
|
|
<selection>T t = param;
|
|
R r = getR();
|
|
System.out.println();</selection>
|
|
|
|
System.out.println("Custom(" + t + ", " + r + ")");
|
|
}
|
|
} |