mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 0e2d72f613e0b8d1f396bd3a28ca32dd834893c7
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 + ")");
|
|
}
|
|
} |