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

Unified Diff: tests/language_strong/mixin_black_listed_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/missing_part_of_tag_test.dart ('k') | tests/language_strong/mixin_cyclic_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/mixin_black_listed_test.dart
diff --git a/tests/language_strong/mixin_black_listed_test.dart b/tests/language_strong/mixin_black_listed_test.dart
index fc8eefec7bebe5879e6a5025d8c1970a4a704850..08ff386d3e2b498e67dfd23c99b23c1e5c0cfd96 100644
--- a/tests/language_strong/mixin_black_listed_test.dart
+++ b/tests/language_strong/mixin_black_listed_test.dart
@@ -7,6 +7,7 @@
import 'package:expect/expect.dart';
class C {}
+
class D {}
class C1 extends Object
@@ -17,28 +18,34 @@ class D1 extends Object with C
, Null //# 02: compile-time error
{}
-class E1 extends Object with
+class E1 extends Object
+ with
int, //# 03: compile-time error
-C {}
+ C {}
-class F1 extends Object with C
+class F1 extends Object
+ with
+ C
, double //# 04: compile-time error
-, D {}
+ ,
+ D {}
class C2 = Object with num; //# 05: compile-time error
class D2 = Object with C
, bool //# 06: compile-time error
-;
+ ;
-class E2 = Object with
+class E2 = Object
+ with
String, //# 07: compile-time error
-C;
+ C;
-class F2 = Object with C,
+class F2 = Object
+ with
+ C,
dynamic, //# 08: compile-time error
-D;
-
+ D;
main() {
Expect.isNotNull(new C1());
« no previous file with comments | « tests/language_strong/missing_part_of_tag_test.dart ('k') | tests/language_strong/mixin_cyclic_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698