mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
19 lines
293 B
Java
19 lines
293 B
Java
// "Replace with <>" "false"
|
|
class Foo<Z> {
|
|
void foo(final Bar baz) {
|
|
Z z = z(new Bar<St<caret>ring>(baz));
|
|
}
|
|
|
|
<P> Bar<P> c(Bar<P> b) {
|
|
return b;
|
|
}
|
|
|
|
private <X> Z z(Bar<X> b) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Bar<T> {
|
|
public Bar(Bar<T> v) {
|
|
}
|
|
} |