pull up: ensure substituted (IDEA-140710)

This commit is contained in:
Anna Kozlova
2015-05-26 13:15:11 +02:00
parent b1e158a392
commit 5d55388ef9
4 changed files with 31 additions and 3 deletions
@@ -0,0 +1,10 @@
abstract class C<T> {
abstract void foo(T t);
}
class B<T> extends C<T> {
@Override
void f<caret>oo(T t) {
}
}