Index: tests/language_strong/private_mixin_exception_throw_test.dart |
diff --git a/tests/language_strong/private_mixin_exception_throw_test.dart b/tests/language_strong/private_mixin_exception_throw_test.dart |
index ea82df507447e7a3b9277bbab759973cd6479f55..96570d7d6c6f0d507f4819d0600db50e7b545005 100644 |
--- a/tests/language_strong/private_mixin_exception_throw_test.dart |
+++ b/tests/language_strong/private_mixin_exception_throw_test.dart |
@@ -5,12 +5,15 @@ |
// Regression test for http://dartbug.com/11637 |
class _C {} |
+ |
class _E { |
throwIt() => throw "it"; |
} |
+ |
class _F { |
throwIt() => throw "IT"; |
} |
+ |
class _D extends _C with _E, _F {} |
main() { |