| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| index 5b5d69bd38db1533fd150b1a952d8260f092800c..d3af767762eaecb7d1948f4058ea100f24b7bd69 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| @@ -260,6 +260,17 @@ public class NonErrorResolverTest extends ResolverTestCase {
|
| verify(source);
|
| }
|
|
|
| + public void test_constWithTypeParameters_direct() throws Exception {
|
| + Source source = addSource(createSource(//
|
| + "class A<T> {",
|
| + " const V = const A<int>();",
|
| + " const A();",
|
| + "}"));
|
| + resolve(source);
|
| + assertNoErrors();
|
| + verify(source);
|
| + }
|
| +
|
| public void test_constWithUndefinedConstructor() throws Exception {
|
| Source source = addSource(createSource(//
|
| "class A {",
|
|
|