mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
19 lines
342 B
Java
19 lines
342 B
Java
public class Bug
|
|
{
|
|
|
|
interface I<K>{}
|
|
public static <CRN>I<CRN> create(final I<CRN> it)
|
|
{
|
|
final I<CRN> f = null;
|
|
|
|
Bug.<String>create(fn<error descr="'fn(Bug.I<FN>)' in 'Bug' cannot be applied to '(Bug.I<CRN>)'">(f)</error>);
|
|
|
|
return create(fn(f));
|
|
|
|
}
|
|
|
|
private static <FN>I<FN> fn(final I<FN> f)
|
|
{
|
|
return null;
|
|
}
|
|
} |