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

Unified Diff: tests/language/regress_22976_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of 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
« no previous file with comments | « tests/language/regress_22936_test.dart ('k') | tests/language/regress_23038_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/regress_22976_test.dart
diff --git a/tests/language/regress_22976_test.dart b/tests/language/regress_22976_test.dart
index ea29319e8c062d87228ba904170e75c8964822cd..e6e7da612e5c09804a81350b473e98a6617b7ec2 100644
--- a/tests/language/regress_22976_test.dart
+++ b/tests/language/regress_22976_test.dart
@@ -11,6 +11,6 @@ class C<S, T> implements B<S>, A<T> {}
main() {
C<int, String> c1 = new C<int, String>();
C<String, int> c2 = new C<String, int>();
- A<int> a0 = c1; /// 01: ok
- A<int> a1 = c2; /// 02: ok
+ A<int> a0 = c1; //# 01: ok
+ A<int> a1 = c2; //# 02: ok
}
« no previous file with comments | « tests/language/regress_22936_test.dart ('k') | tests/language/regress_23038_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698