[nnbd_migration] Remove personal test file

Change-Id: If9f43600567793e5203dc3a5dd6be0d4172daf8c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/136303
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Mike Fairhurst <mfairhurst@google.com>
This commit is contained in:
Mike Fairhurst 2020-02-18 23:12:49 +00:00 committed by commit-bot@chromium.org
parent 6c68844821
commit c11c0ae3fd

View file

@ -1,20 +0,0 @@
class B<T extends Object> {
B([C<T> t]);
}
abstract class C<T extends Object> {
void f(T t);
}
class E {
final C<Object> _base;
E([C base]) : _base = base;
f(Object t) {
_base.f(t);
}
}
void main() {
E e = E();
e.f(null);
}