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

Unified Diff: tests/language/mixin_supertype_subclass_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
Index: tests/language/mixin_supertype_subclass_test.dart
diff --git a/tests/language/mixin_supertype_subclass_test.dart b/tests/language/mixin_supertype_subclass_test.dart
index 2ba3780f99cd897b337edb92716b545630ce96cd..f337ed04111ab67b85f4592daf603cfa5d1764cf 100644
--- a/tests/language/mixin_supertype_subclass_test.dart
+++ b/tests/language/mixin_supertype_subclass_test.dart
@@ -12,18 +12,24 @@
// superclass of A is not a subtype of S_static."
class B {}
+
class C {}
+
class D {}
+
class E extends B with C implements D {}
+
class F extends E {}
+
class A = E with M;
+
class M
extends B //# 01: ok
extends C //# 02: static type warning
extends D //# 03: ok
extends E //# 04: ok
extends F //# 05: static type warning
- {}
+{}
main() {
new A();
« no previous file with comments | « tests/language/mixin_supertype_subclass4_test.dart ('k') | tests/language/mixin_type_parameters_errors_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698