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

Unified Diff: tests/language_strong/malbounded_redirecting_factory2_test.dart

Issue 2770063002: Revert "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
Index: tests/language_strong/malbounded_redirecting_factory2_test.dart
diff --git a/tests/language_strong/malbounded_redirecting_factory2_test.dart b/tests/language_strong/malbounded_redirecting_factory2_test.dart
index 3cc6c6be16045e1165f128e0403397935e716592..afb19c634bfef81cfc7eef681c9d8aa117158947 100644
--- a/tests/language_strong/malbounded_redirecting_factory2_test.dart
+++ b/tests/language_strong/malbounded_redirecting_factory2_test.dart
@@ -4,22 +4,19 @@
import 'package:expect/expect.dart';
-class A<
- Ta
+class A<Ta
extends num // //# 02: continued
- > implements B<Ta>, C<Ta> {}
+ > implements B<Ta>, C<Ta> { }
-class B<
- Tb
+class B<Tb
extends num // //# 03: continued
- > {
+ > {
factory B() = A<Tb>;
}
-class C<
- Tc
+class C<Tc
extends num // //# 04: continued
- > {
+ > {
factory C() = B<Tc>;
}
« no previous file with comments | « tests/language_strong/main_test.dart ('k') | tests/language_strong/malbounded_redirecting_factory_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698