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

Unified Diff: tests/language/mixin_type_parameters_errors_test.dart

Issue 23190003: ClassMirror.mixin (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 4 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_type_parameters_errors_test.dart
diff --git a/tests/language/mixin_type_parameters_errors_test.dart b/tests/language/mixin_type_parameters_errors_test.dart
index be459bdf515cf82bd1ad617d4a2bf18bde027f5d..1cdcf20d5b611169b573270c4891c9cc26a7c2bd 100644
--- a/tests/language/mixin_type_parameters_errors_test.dart
+++ b/tests/language/mixin_type_parameters_errors_test.dart
@@ -6,11 +6,11 @@ class S<T> { }
class M<U> { }
class A<X> extends S<int> with M<double> { }
-class B<U, V> extends S with M<U, V> { } /// 01: compile-time error
-class C<A, B> extends S<A, int> with M { } /// 02: compile-time error
+class B<U, V> extends S with M<U, V> { } /* -- this is fine */
+class C<A, B> extends S<A, int> with M { } /* -- this is fine */
typedef F<X> = S<X> with M<X>;
-typedef G = S<int> with M<double, double>; /// 05: compile-time error
+typedef G = S<int> with M<double, double>; /* -- this is fine */
main() {
var a;
« runtime/vm/parser.cc ('K') | « tests/language/language.status ('k') | tests/lib/lib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698