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

Unified Diff: tests/language_strong/issue18628_2_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_strong/issue18628_2_test.dart
diff --git a/tests/language_strong/issue18628_2_test.dart b/tests/language_strong/issue18628_2_test.dart
index a6e1cfd73e4d946f64babac1432f8118a4cb47e3..3232ea0fbae80bef8db919238cad1683e6df7742 100644
--- a/tests/language_strong/issue18628_2_test.dart
+++ b/tests/language_strong/issue18628_2_test.dart
@@ -12,9 +12,9 @@ class X<T extends Type> {}
// This line is supposed to cause the warning; the other lines are
// marked because they don't make sense when [Y] is not defined.
-class Y<U> extends X<U> {} /// 01: static type warning
+class Y<U> extends X<U> {} //# 01: static type warning
main() {
- X<Type> x = new X<Type>(); /// 01: static type warning
- Y<Type> y = new Y<Type>(); /// 01: static type warning
+ X<Type> x = new X<Type>(); //# 01: static type warning
+ Y<Type> y = new Y<Type>(); //# 01: static type warning
}

Powered by Google App Engine
This is Rietveld 408576698