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

Unified Diff: tests/language_strong/prefix_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/prefix_assignment_test.dart
diff --git a/tests/language_strong/prefix_assignment_test.dart b/tests/language_strong/prefix_assignment_test.dart
index b473fc2014ba34e00f4b32329493461ae03fdb90..14e6f51a0f0d22c4c4ab3ce64c7461931171ea75 100644
--- a/tests/language_strong/prefix_assignment_test.dart
+++ b/tests/language_strong/prefix_assignment_test.dart
@@ -16,11 +16,11 @@ class Base {
class Derived extends Base {
void f() {
- p = 1; /// 01: compile-time error
+ p = 1; //# 01: compile-time error
}
}
main() {
new Derived().f();
- p = 1; /// 02: compile-time error
+ p = 1; //# 02: compile-time error
}
« no previous file with comments | « tests/language_strong/prefix23_test.dart ('k') | tests/language_strong/prefix_identifier_reference_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698