Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1061)

Unified Diff: tests/language/switch_case_test.dart

Issue 2768073002: Format all multitests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/switch_case_test.dart
diff --git a/tests/language/switch_case_test.dart b/tests/language/switch_case_test.dart
index 2ed1df5b28450c1bd6494e846fc9147307ebf281..64362fec7c08b19331e65f369dd9fa0125dd9ed2 100644
--- a/tests/language/switch_case_test.dart
+++ b/tests/language/switch_case_test.dart
@@ -34,14 +34,22 @@ main() {
}
switch (new C()) {
- case const C(): Expect.fail("bad switch"); break;
- case const A.C(): Expect.fail("bad switch"); break;
- case const A.C2(): Expect.fail("bad switch"); break;
+ case const C():
+ Expect.fail("bad switch");
+ break;
+ case const A.C():
+ Expect.fail("bad switch");
+ break;
+ case const A.C2():
+ Expect.fail("bad switch");
+ break;
case const A(): Expect.fail("bad switch"); break; // //# 01: compile-time error
}
switch (new A()) {
- case const A(): Expect.fail("bad switch"); break;
+ case const A():
+ Expect.fail("bad switch");
+ break;
case const A.B(): Expect.fail("bad switch"); break; // //# 02: compile-time error
}
}

Powered by Google App Engine
This is Rietveld 408576698