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

Unified Diff: tests/language/mixin_black_listed_test.dart

Issue 27223005: Implement new mixin application syntax (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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_black_listed_test.dart
===================================================================
--- tests/language/mixin_black_listed_test.dart (revision 28595)
+++ tests/language/mixin_black_listed_test.dart (working copy)
@@ -25,17 +25,17 @@
, double /// 04: compile-time error
, D {}
-typedef C2 = Object with num; /// 05: compile-time error
+class C2 = Object with num; /// 05: compile-time error
-typedef D2 = Object with C
+class D2 = Object with C
, bool /// 06: compile-time error
;
-typedef E2 = Object with
+class E2 = Object with
String, /// 07: compile-time error
C;
-typedef F2 = Object with C,
+class F2 = Object with C,
dynamic, /// 08: compile-time error
D;

Powered by Google App Engine
This is Rietveld 408576698