Index: compiler/javatests/com/google/dart/compiler/backend/js/testFieldAccessExprOpt.dart |
diff --git a/compiler/javatests/com/google/dart/compiler/backend/js/testFieldAccessExprOpt.dart b/compiler/javatests/com/google/dart/compiler/backend/js/testFieldAccessExprOpt.dart |
index 278ead8fc4e2c14c52cc80e9d203f347a3a27a67..1a8ff779ddd547880680ec4532ab81523ec29bd0 100644 |
--- a/compiler/javatests/com/google/dart/compiler/backend/js/testFieldAccessExprOpt.dart |
+++ b/compiler/javatests/com/google/dart/compiler/backend/js/testFieldAccessExprOpt.dart |
@@ -5,9 +5,11 @@ |
class A { |
int x; |
- static final A a = new A(); |
+ const A() : this.x = 1; |
- A(){} |
+ static final A a = const A(); |
+ |
+ |
} |
class WillNotOptimizeFieldAccess { |