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

Unified Diff: tests/language/method_override2_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/method_override2_test.dart
diff --git a/tests/language/method_override2_test.dart b/tests/language/method_override2_test.dart
index f697efe7b8c99126a3a3b91b05f86a8c43fa2437..fb9e8f9166bc1a0cb6db9659e2c0022d0c3fdf3a 100644
--- a/tests/language/method_override2_test.dart
+++ b/tests/language/method_override2_test.dart
@@ -8,7 +8,7 @@ abstract class I {
m({a, b});
}
-abstract class J extends I { }
+abstract class J extends I {}
abstract class K extends J {
m({c, d}); // //# 00: static type warning
@@ -30,7 +30,6 @@ class D
}
}
-
int main() {
var c = new C();
c.m(a: "hello", b: "world");
@@ -38,4 +37,3 @@ int main() {
d.m(c: "hello", d: "world");
print("${c is I} ${d is I} ${d is I} ${d is J}");
}
-

Powered by Google App Engine
This is Rietveld 408576698