Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/genericsHighlighting/IDEA67672.java
Alexey Kudravtsev e4c59feb9d more optimisations
2013-08-05 14:47:32 +04:00

7 lines
296 B
Java

import java.util.Collection;
import java.util.List;
interface A
{
<<error descr="'java.util.Collection' cannot be inherited with different type arguments: 'capture<?>' and 'capture<? extends java.lang.Cloneable>'"></error>T extends List<?> & Collection<? extends Cloneable>> void foo(T x);
}