| Index: tests/language_strong/generic_methods_shadowing_test.dart
|
| diff --git a/tests/language_strong/generic_methods_shadowing_test.dart b/tests/language_strong/generic_methods_shadowing_test.dart
|
| index a677fd4f88cdf70e73d9f553350a99d23c0b6c9e..ae6a69d1cb58308d0a3dfc4018956e5efcfc1935 100644
|
| --- a/tests/language_strong/generic_methods_shadowing_test.dart
|
| +++ b/tests/language_strong/generic_methods_shadowing_test.dart
|
| @@ -13,7 +13,6 @@ class X {}
|
| class Y {}
|
|
|
| bool foo<T, S>(T t, S s) {
|
| -
|
| // The type parameter T of bar shadows the type parameter T of foo.
|
| bool bar<T>(T t) {
|
| return t is T && t is S;
|
|
|