| Index: tests/compiler/dart2js/dart_backend_test.dart
|
| diff --git a/tests/compiler/dart2js/dart_backend_test.dart b/tests/compiler/dart2js/dart_backend_test.dart
|
| index 355d2cf4d83231c67b2411b8da4f6e2ac600d337..508010cca2ed8fc2b692c694cf984ce5be29cbeb 100644
|
| --- a/tests/compiler/dart2js/dart_backend_test.dart
|
| +++ b/tests/compiler/dart2js/dart_backend_test.dart
|
| @@ -179,7 +179,8 @@ testExtendsImplements() {
|
| }
|
|
|
| testVariableDefinitions() {
|
| - testDart2Dart('main(){final var x,y;final String s;}');
|
| + testDart2Dart('main(){var x,y;final String s;}');
|
| + testDart2Dart('main(){final int x,y;final String s;}');
|
| testDart2Dart('foo(f,g){}main(){foo(1,2);}');
|
| testDart2Dart('foo(f(arg)){}main(){foo(main);}');
|
| // A couple of static/finals inside a class.
|
|
|