| Index: tests/language/deferred_static_seperate_lib1.dart
|
| diff --git a/tests/language/deferred_static_seperate_lib1.dart b/tests/language/deferred_static_seperate_lib1.dart
|
| index 92965237f97b07e405526d14bf6f9c9d4582d3b8..f8205d8c722836fc37e0582f1702c8cb5b1f47f3 100644
|
| --- a/tests/language/deferred_static_seperate_lib1.dart
|
| +++ b/tests/language/deferred_static_seperate_lib1.dart
|
| @@ -13,11 +13,12 @@ var x = const ConstClass(const ConstClass(1));
|
|
|
| class C {
|
| static foo() {
|
| - () {} (); // Hack to avoid inlining.
|
| + () {}(); // Hack to avoid inlining.
|
| return 1;
|
| }
|
| +
|
| bar() {
|
| - () {} (); // Hack to avoid inlining.
|
| + () {}(); // Hack to avoid inlining.
|
| return 1;
|
| }
|
| }
|
| @@ -43,9 +44,11 @@ class C4 {
|
| }
|
|
|
| class C5 {
|
| - static const foo = const [const {1: 3}];
|
| + static const foo = const [
|
| + const {1: 3}
|
| + ];
|
| bar() {
|
| - () {} (); // Hack to avoid inlining.
|
| + () {}(); // Hack to avoid inlining.
|
| return 1;
|
| }
|
| -}
|
| +}
|
|
|