mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 4bd5447dd5fc2342f5e9b23e693f7683594470f5
6 lines
142 B
Java
6 lines
142 B
Java
interface Foo1<T, N extends Number> {
|
|
void m(T arg);
|
|
void m(N arg);
|
|
}
|
|
@FunctionalInterface
|
|
interface Foo extends Foo1<Integer, Integer> {} |