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

Unified Diff: tests/language/issue18628_1_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/issue18628_1_test.dart
diff --git a/tests/language/issue18628_1_test.dart b/tests/language/issue18628_1_test.dart
index 9481efde14418a06ddc65b1c5d7ba27ff7300109..3856b3e7457f20843a369b62b9e8eeeb2ea65eb5 100644
--- a/tests/language/issue18628_1_test.dart
+++ b/tests/language/issue18628_1_test.dart
@@ -11,10 +11,10 @@
class C<T> {
// This line is supposed to cause the warning; the other commented
// line just doesn't make sense without this line.
- T t = int; /// 01: static type warning
+ T t = int; //# 01: static type warning
}
main() {
C<Type> c = new C<Type>();
- print(c.t); /// 01: static type warning
+ print(c.t); //# 01: static type warning
}

Powered by Google App Engine
This is Rietveld 408576698