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

Unified Diff: tests/language/type_promotion_assign_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/type_promotion_assign_test.dart
diff --git a/tests/language/type_promotion_assign_test.dart b/tests/language/type_promotion_assign_test.dart
index d928fd2449c8df0e5edc4c48cb3a6bad7f38b427..f749d16b5911ae59b0f98511a7d2e902c981d78f 100644
--- a/tests/language/type_promotion_assign_test.dart
+++ b/tests/language/type_promotion_assign_test.dart
@@ -7,15 +7,19 @@
class A {
var a = "a";
}
+
class B extends A {
var b = "b";
}
+
class C extends B {
var c = "c";
}
+
class D extends A {
var d = "d";
}
+
class E implements C, D {
var a = "";
var b = "";

Powered by Google App Engine
This is Rietveld 408576698