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

Unified Diff: tests/language_strong/final_variable_assignment_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/final_variable_assignment_test.dart
diff --git a/tests/language_strong/final_variable_assignment_test.dart b/tests/language_strong/final_variable_assignment_test.dart
index 1a6df0b21ea17e84783c9d36bcc13e4a9ba12d3f..59c275a5236fcf6a5bbcdeccd44a9258219c3d73 100644
--- a/tests/language_strong/final_variable_assignment_test.dart
+++ b/tests/language_strong/final_variable_assignment_test.dart
@@ -6,8 +6,8 @@
main() {
final x = 30;
- x = 0; // /// 01: static type warning, runtime error
- x += 1; // /// 02: static type warning, runtime error
- ++x; // /// 03: static type warning, runtime error
- x++; // /// 04: static type warning, runtime error
+ x = 0; // //# 01: static type warning, runtime error
+ x += 1; // //# 02: static type warning, runtime error
+ ++x; // //# 03: static type warning, runtime error
+ x++; // //# 04: static type warning, runtime error
}
« no previous file with comments | « tests/language_strong/final_syntax_test.dart ('k') | tests/language_strong/first_class_types_literals_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698