Index: tests/language_strong/multiline_newline_test.dart |
diff --git a/tests/language_strong/multiline_newline_test.dart b/tests/language_strong/multiline_newline_test.dart |
index f250b28b944eb911d3029ea1d0c2159c51c3b1af..e081e90bf86ba90cccc57f60591d9916bb168351 100644 |
--- a/tests/language_strong/multiline_newline_test.dart |
+++ b/tests/language_strong/multiline_newline_test.dart |
@@ -32,14 +32,14 @@ main() { |
Expect.isTrue(c2); |
Expect.isTrue(c3); |
- const c4 = c1 ? 1 : 2; /// 01: ok |
- Expect.equals(1, c4); /// 01: continued |
+ const c4 = c1 ? 1 : 2; // /// 01: ok |
+ Expect.equals(1, c4); // /// 01: continued |
- const c5 = c2 ? 2 : 3; /// 02: ok |
- Expect.equals(2, c5); /// 02: continued |
+ const c5 = c2 ? 2 : 3; // /// 02: ok |
+ Expect.equals(2, c5); // /// 02: continued |
- const c6 = c3 ? 3 : 4; /// 03: ok |
- Expect.equals(3, c6); /// 03: continued |
+ const c6 = c3 ? 3 : 4; // /// 03: ok |
+ Expect.equals(3, c6); // /// 03: continued |
const c7 = |
cr.constantMultilineString != crlf.constantMultilineString ? true : null; |
@@ -51,7 +51,7 @@ main() { |
Expect.isNull(c8); |
Expect.isNull(c9); |
- const c10 = c7 ? 1 : 2; /// 04: compile-time error |
- const c11 = c8 ? 2 : 3; /// 05: compile-time error |
- const c12 = c9 ? 3 : 4; /// 06: compile-time error |
+ const c10 = c7 ? 1 : 2; // /// 04: compile-time error |
+ const c11 = c8 ? 2 : 3; // /// 05: compile-time error |
+ const c12 = c9 ? 3 : 4; // /// 06: compile-time error |
} |