mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
9 lines
405 B
Java
9 lines
405 B
Java
import java.util.List;
|
|
|
|
<error descr="'method(List<String>)' in 'Implementation' clashes with 'method(List<String>)' in 'IfcWithGenericMethod'; both methods have same erasure, yet neither overrides the other">class Implementation implements IfcWithGenericMethod</error> {
|
|
public void method(final List<String> strings) {}
|
|
}
|
|
|
|
interface IfcWithGenericMethod<T> {
|
|
void method(List<String> strings);
|
|
} |