mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
5 lines
171 B
Java
5 lines
171 B
Java
|
|
interface Test {
|
|
<error descr="'foo(A)' clashes with 'foo(B)'; both methods have same erasure">static <A, B> void foo(A a)</error> {}
|
|
static <A, B> void foo(B b) {}
|
|
} |