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

Unified Diff: tests/language/toplevel_collision2_test.dart

Issue 2774783002: Re-land "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/toplevel_collision1_test.dart ('k') | tests/language/try_catch_on_syntax_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/toplevel_collision2_test.dart
diff --git a/tests/language/toplevel_collision2_test.dart b/tests/language/toplevel_collision2_test.dart
index f992f3e320269540e9080c481c45520151d74d36..0d9734e36e633c83151dcdd93867c243bb818355 100644
--- a/tests/language/toplevel_collision2_test.dart
+++ b/tests/language/toplevel_collision2_test.dart
@@ -2,11 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-
get x => 200;
// Ok: can have a setter named x when getter x is defined.
-set x(var i) { print(i); }
+set x(var i) {
+ print(i);
+}
// Error: there is already a getter for x
int x; // //# 00: compile-time error
@@ -14,8 +15,6 @@ int x; // //# 00: compile-time error
// Error: there is already a getter named x.
int x(a, b) { print(a + b); } // //# 01: compile-time error
-
-
void main() {
// No need to reference x.
}
« no previous file with comments | « tests/language/toplevel_collision1_test.dart ('k') | tests/language/try_catch_on_syntax_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698