mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
15 lines
177 B
Java
15 lines
177 B
Java
|
|
class C {
|
|
static <M extends Integer> M foo() {
|
|
return null;
|
|
}
|
|
|
|
<G> G bar(G g, G gg) {
|
|
return g;
|
|
}
|
|
|
|
void m(boolean b){
|
|
bar(b ? foo() : null, foo());
|
|
}
|
|
}
|