| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticTypeWarningCodeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticTypeWarningCodeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticTypeWarningCodeTest.java
|
| index 213d95dbe0d29b3714fbaf8635d638c1869c7948..166ffdba051b250751058ef8e4a97846ee86cc08 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticTypeWarningCodeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticTypeWarningCodeTest.java
|
| @@ -372,19 +372,6 @@ public class StaticTypeWarningCodeTest extends ResolverTestCase {
|
| verify(source);
|
| }
|
|
|
| - public void test_typeArgumentNotMatchingBounds_const() throws Exception {
|
| - Source source = addSource(createSource(//
|
| - "class A {}",
|
| - "class B {}",
|
| - "class G<E extends A> {",
|
| - " const G();",
|
| - "}",
|
| - "f() { return const G<B>(); }"));
|
| - resolve(source);
|
| - assertErrors(StaticTypeWarningCode.TYPE_ARGUMENT_NOT_MATCHING_BOUNDS);
|
| - verify(source);
|
| - }
|
| -
|
| public void test_typeArgumentNotMatchingBounds_extends() throws Exception {
|
| Source source = addSource(createSource(//
|
| "class A {}",
|
|
|