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

Unified Diff: tests/language_strong/malformed_inheritance_test.dart

Issue 2774783002: Re-land "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
« no previous file with comments | « tests/language_strong/malformed_bound_test.dart ('k') | tests/language_strong/malformed_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/malformed_inheritance_test.dart
diff --git a/tests/language_strong/malformed_inheritance_test.dart b/tests/language_strong/malformed_inheritance_test.dart
index f55d8807a37c271b358a93080d836ee7a9082d3c..733202a20d98136a4ca3a0fc96dc63483200461b 100644
--- a/tests/language_strong/malformed_inheritance_test.dart
+++ b/tests/language_strong/malformed_inheritance_test.dart
@@ -22,13 +22,11 @@ class C
<A> extends Object with A<Unresolved> //# 10: compile-time error
<A> implements A<int> //# 11: compile-time error
<A> implements A<Unresolved> //# 12: compile-time error
-{
-
-}
+{}
void main() {
new C();
Expect.isTrue(new C() is A<String> && new C() is A<int>); //# 02: continued
Expect.isTrue(new C() is A<String> && new C() is A<int>); //# 04: continued
Expect.isTrue(new C() is A<String> && new C() is A<int>); //# 06: continued
-}
+}
« no previous file with comments | « tests/language_strong/malformed_bound_test.dart ('k') | tests/language_strong/malformed_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698