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

Unified Diff: tests/language_strong/function_type_alias5_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
Index: tests/language_strong/function_type_alias5_test.dart
diff --git a/tests/language_strong/function_type_alias5_test.dart b/tests/language_strong/function_type_alias5_test.dart
index 8a3f1d33a7d87da6bd36c3c9aa56f639119757a1..7f60a4ea7cddf3b724971737d1803952bbf7cff4 100644
--- a/tests/language_strong/function_type_alias5_test.dart
+++ b/tests/language_strong/function_type_alias5_test.dart
@@ -3,15 +3,15 @@
// BSD-style license that can be found in the LICENSE file.
// Dart test for illegally self referencing function type alias.
-typedef Handle Handle(String command); // /// 00: compile-time error
+typedef Handle Handle(String command); // //# 00: compile-time error
-typedef F(F x); // /// 01: compile-time error
+typedef F(F x); // //# 01: compile-time error
-typedef A(B x); // /// 02: compile-time error
-typedef B(A x); // /// 02: continued
+typedef A(B x); // //# 02: compile-time error
+typedef B(A x); // //# 02: continued
main() {
- Handle h; // /// 00: continued
- F f; // /// 01: continued
- A f; // /// 02: continued
+ Handle h; // //# 00: continued
+ F f; // //# 01: continued
+ A f; // //# 02: continued
}
« no previous file with comments | « tests/language_strong/function_syntax_test.dart ('k') | tests/language_strong/function_type_alias6_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698