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

Unified Diff: tests/language_strong/duplicate_implements_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
Index: tests/language_strong/duplicate_implements_test.dart
diff --git a/tests/language_strong/duplicate_implements_test.dart b/tests/language_strong/duplicate_implements_test.dart
index 8bb74e3a0d09154b82b7fdbf4562cb355c19a623..41c10fabd308fec39504d93606fdf379c05fca8a 100644
--- a/tests/language_strong/duplicate_implements_test.dart
+++ b/tests/language_strong/duplicate_implements_test.dart
@@ -4,9 +4,11 @@
// Check that duplicate types in implements/extends list are
// compile-time errors.
-abstract class I { }
-abstract class J { }
-abstract class K<T> { }
+abstract class I {}
+
+abstract class J {}
+
+abstract class K<T> {}
class X implements I, J, I { } // //# 01: compile-time error
class X implements J, I, K<int>, K<int> { } // //# 02: compile-time error
« no previous file with comments | « tests/language_strong/deferred_type_dependency_test.dart ('k') | tests/language_strong/duplicate_interface_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698