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

Unified Diff: tests/language/regress_24935_test.dart

Issue 2770063002: Revert "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
« no previous file with comments | « tests/language/regress_23500_test.dart ('k') | tests/language/regress_26855_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/regress_24935_test.dart
diff --git a/tests/language/regress_24935_test.dart b/tests/language/regress_24935_test.dart
index 430629f7434673ea1424f44df532dd1e6ffd1b54..22ead9e491fd7329771ac801aceadb4c7656fe90 100644
--- a/tests/language/regress_24935_test.dart
+++ b/tests/language/regress_24935_test.dart
@@ -7,10 +7,9 @@ import 'dart:async';
S() => new Stream.fromIterable([1]);
Future main() async {
- L:
- for (var s = 0; s < 10; s++) {
- await for (var s1 in S()) {
- await for (var s2 in S()) {
+ L: for (var s = 0; s < 10; s++) {
+ await for (var s1 in S()){
+ await for (var s2 in S()){
continue L;
}
}
@@ -21,3 +20,5 @@ Future main() async {
// outcome is an unhandled exception.
throw "ball"; //# 01: runtime error
}
+
+
« no previous file with comments | « tests/language/regress_23500_test.dart ('k') | tests/language/regress_26855_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698