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

Unified Diff: tests/language/prefix_assignment_test.dart

Issue 2765693002: Update all tests (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/prefix_assignment_test.dart
diff --git a/tests/language/prefix_assignment_test.dart b/tests/language/prefix_assignment_test.dart
index b473fc2014ba34e00f4b32329493461ae03fdb90..14e6f51a0f0d22c4c4ab3ce64c7461931171ea75 100644
--- a/tests/language/prefix_assignment_test.dart
+++ b/tests/language/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
}

Powered by Google App Engine
This is Rietveld 408576698