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

Unified Diff: tests/language/final_initializer_instance_reference_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/final_for_in_variable_test.dart ('k') | tests/language/final_is_not_const_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/final_initializer_instance_reference_test.dart
diff --git a/tests/language/final_initializer_instance_reference_test.dart b/tests/language/final_initializer_instance_reference_test.dart
index 65580e778d50a0ee3c60f1732a353617105fc898..7e4da6d5ba0e18ea28a86caa98a8d69abbff49b8 100644
--- a/tests/language/final_initializer_instance_reference_test.dart
+++ b/tests/language/final_initializer_instance_reference_test.dart
@@ -9,9 +9,9 @@ class C {
const C();
final x = 1;
- final y = x; /// 01: compile-time error
+ final y = x; //# 01: compile-time error
}
main() {
- const C().y; /// 01: continued
+ const C().y; //# 01: continued
}
« no previous file with comments | « tests/language/final_for_in_variable_test.dart ('k') | tests/language/final_is_not_const_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698