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

Unified Diff: tests/language_strong/label6_negative_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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_strong/label6_negative_test.dart
diff --git a/tests/language_strong/label6_negative_test.dart b/tests/language_strong/label6_negative_test.dart
index 21e345da8abfec1aa61222910505c33a9a8d1883..eee60ab2a79db1103083517889d9d81e6c41a18a 100644
--- a/tests/language_strong/label6_negative_test.dart
+++ b/tests/language_strong/label6_negative_test.dart
@@ -3,21 +3,21 @@
// BSD-style license that can be found in the LICENSE file.
// Dart test program to test check that we catch label errors.
-
class Label6NegativeTest {
static testMain() {
- L: while (false) {
+ L:
+ while (false) {
break; // ok;
break L; // ok
void innerfunc() {
if (true) break L; // Illegal: jump target is outside of function
}
+
innerfunc();
}
}
}
-
main() {
Label6NegativeTest.testMain();
}

Powered by Google App Engine
This is Rietveld 408576698