Index: tests/compiler/dart2js_extra/23432_test.dart |
diff --git a/tests/compiler/dart2js_extra/23432_test.dart b/tests/compiler/dart2js_extra/23432_test.dart |
index 385bbf1394117ad55f0534f4aacc17394ea9453d..b0fc3d9141ec8c8d782645302ca84bc4d156bfaf 100644 |
--- a/tests/compiler/dart2js_extra/23432_test.dart |
+++ b/tests/compiler/dart2js_extra/23432_test.dart |
@@ -9,10 +9,14 @@ |
import 'package:expect/expect.dart'; |
class N { |
- noSuchMethod(i) { print('x'); return 42; } |
+ noSuchMethod(i) { |
+ print('x'); |
+ return 42; |
+ } |
} |
-@NoInline() @AssumeDynamic() |
+@NoInline() |
+@AssumeDynamic() |
get NEVER => false; |
main() { |
@@ -20,7 +24,9 @@ main() { |
if (NEVER) c = new N(); |
var e; |
try { |
- c..toString()..add(88); |
+ c |
+ ..toString() |
+ ..add(88); |
} catch (ex) { |
e = ex; |
} |