unimplement interface in generics case: check by subst. signature (IDEA-67230 )

This commit is contained in:
anna
2011-03-31 15:56:35 +02:00
parent e873ba4875
commit 6f8b67665c
3 changed files with 59 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
// "Unimplement Interface" "true"
class A implements II<S<caret>tring> {
public String toString() {
return super.toString();
}
public void foo(String ty){}
}
interface II<T> {
void foo(T ty);
}