| Index: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| index 35cdffa638426926047300ad4541a49b1220888f..2fe1be77c352f588a54830b24744171dadb937be 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| @@ -1355,8 +1355,8 @@ public class TypeAnalyzerTest extends TypeAnalyzerTestCase {
|
| " factory A() {}",
|
| "}");
|
| analyzeClasses(source);
|
| - // analyze("{ var val1 = new IA<Foo>(); }");
|
| - // analyze("{ var val1 = new IA<Bar>(); }");
|
| + analyze("{ var val1 = new IA<Foo>(); }");
|
| + analyze("{ var val1 = new IA<Bar>(); }");
|
| analyzeFail("{ var val1 = new IA<String>(); }",TypeErrorCode.TYPE_NOT_ASSIGNMENT_COMPATIBLE);
|
| }
|
| }
|
|
|