testdata for IDEA-67841

This commit is contained in:
anna
2013-05-02 14:53:01 +02:00
parent fb7363e172
commit 1e4fcaaabd
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,21 @@
package pck;
import java.util.Collection;
import java.util.List;
import static pck.D.foo;
import static pck.C.foo;
public class C {
static <T extends Collection<S>, S> void foo(T x) { }
}
class D {
static <T extends List<S>, S> String foo(T x) { return null; }
}
class B{
public static void bar(){
foo(null).toLowerCase();
}
}