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

Unified Diff: tests/language/type_variable_scope3_test.dart

Issue 2765693002: Update all tests (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/type_variable_scope3_test.dart
diff --git a/tests/language/type_variable_scope3_test.dart b/tests/language/type_variable_scope3_test.dart
index 91a8547f535f92f43b61f311456b3ebf65235ad3..78972fb9a2dad150ead816c4a73884e1470cd278 100644
--- a/tests/language/type_variable_scope3_test.dart
+++ b/tests/language/type_variable_scope3_test.dart
@@ -5,12 +5,12 @@
// Test that a type parameter cannot be repeated.
class Foo<T
- , T /// 00: compile-time error
+ , T //# 00: compile-time error
> {
}
main() {
new Foo<String
- , String /// 00: continued
+ , String //# 00: continued
>();
}

Powered by Google App Engine
This is Rietveld 408576698