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

Unified Diff: tests/language_strong/class_cycle_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_strong/checked_null_test.dart ('k') | tests/language_strong/class_keyword_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/class_cycle_test.dart
diff --git a/tests/language_strong/class_cycle_test.dart b/tests/language_strong/class_cycle_test.dart
index 8b58e2bb9e1239facea8c5592ed3a26bc393cd06..dbc11a0d6af29414c9d9ed5eceebcbf4ac833f33 100644
--- a/tests/language_strong/class_cycle_test.dart
+++ b/tests/language_strong/class_cycle_test.dart
@@ -5,17 +5,14 @@
import "package:expect/expect.dart";
-class Foo implements Bar {
-}
+class Foo implements Bar {}
-class C {
-}
+class C {}
class Bar
extends Foo // //# 00: compile-time error
implements Foo // //# 01: compile-time error
-{
-}
+{}
class ImplementsC implements C
, C // //# 02: compile-time error
@@ -32,4 +29,3 @@ main() {
Expect.isTrue(new ImplementsC() is C);
Expect.isTrue(new ExtendsC() is C);
}
-
« no previous file with comments | « tests/language_strong/checked_null_test.dart ('k') | tests/language_strong/class_keyword_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698