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

Unified Diff: tests/language_strong/type_variable_scope3_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/type_variable_scope3_test.dart
diff --git a/tests/language_strong/type_variable_scope3_test.dart b/tests/language_strong/type_variable_scope3_test.dart
index 99f04d48f8adeeb13eb84fdf3c6c095a53b27258..cea3ee557a7d987065b6992f3f3b0323bfb3e5d7 100644
--- a/tests/language_strong/type_variable_scope3_test.dart
+++ b/tests/language_strong/type_variable_scope3_test.dart
@@ -4,13 +4,14 @@
// Test that a type parameter cannot be repeated.
-class Foo<T
+class Foo<
+ T
, T // //# 00: compile-time error
- > {
-}
+ > {}
main() {
- new Foo<String
+ new Foo<
+ String
, String // //# 00: continued
>();
}
« no previous file with comments | « tests/language_strong/type_variable_conflict_test.dart ('k') | tests/language_strong/type_variable_scope_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698