| 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 1ba37a03e47ed704e151721971f4ca1916fd9b4a..798fe521332e1aec89938fb139416a04a662fdb4 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTest.java
|
| @@ -55,7 +55,7 @@ public class TypeAnalyzerTest extends TypeAnalyzerTestCase {
|
| analyze("List<String> strings = <String>['x'];");
|
| analyze("List array = ['x'];");
|
| analyze("List array = <String>['x'];");
|
| - analyzeFail("List<int> ints = ['x'];", TypeErrorCode.TYPE_NOT_ASSIGNMENT_COMPATIBLE);
|
| + analyze("List<int> ints = ['x'];");
|
| analyzeFail("List<int> ints = <String>['x'];", TypeErrorCode.TYPE_NOT_ASSIGNMENT_COMPATIBLE);
|
| }
|
|
|
|
|