Chromium Code Reviews| Index: tests/compiler/dart2js/unparser_test.dart |
| diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart |
| index e60276af7ac5bd12d7477bbd4a130ee5d4d4aded..fb770fb9b3e78a51df186022d6f055bd73054a5c 100644 |
| --- a/tests/compiler/dart2js/unparser_test.dart |
| +++ b/tests/compiler/dart2js/unparser_test.dart |
| @@ -22,7 +22,12 @@ testForLoop() { |
| testUnparse('for(i=0;i<100;i++){}'); |
| } |
| +testEmptyList() { |
| + testUnparse('var x= [];'); |
| +} |
| + |
| main() { |
| testGenericTypes(); |
| testForLoop(); |
| + testEmptyList(); |
| } |