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

Unified Diff: tests/language/private_mixin_exception_throw_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/private_mixin_exception_throw_test.dart
diff --git a/tests/language/private_mixin_exception_throw_test.dart b/tests/language/private_mixin_exception_throw_test.dart
index ea82df507447e7a3b9277bbab759973cd6479f55..96570d7d6c6f0d507f4819d0600db50e7b545005 100644
--- a/tests/language/private_mixin_exception_throw_test.dart
+++ b/tests/language/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() {

Powered by Google App Engine
This is Rietveld 408576698