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

Unified Diff: tests/language/fauxverride_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/fauxverride_test.dart
diff --git a/tests/language/fauxverride_test.dart b/tests/language/fauxverride_test.dart
index 4bc2d36a4fb527777132f6e44eb91bb97f933605..45e7d64dc4b7a630e4b90e2f4bcd2df1e6c6a490 100644
--- a/tests/language/fauxverride_test.dart
+++ b/tests/language/fauxverride_test.dart
@@ -68,7 +68,7 @@ class Sub extends Super {
// According to 7.1, instance methods include those of the
// superclass, and according to 7, it is a compile-time to have an
// instance method and static method with the same name.
- static /// 03: compile-time error
+ static //# 03: compile-time error
instanceMethod() => m();
// According to 7.7, static variables are not inherited.
@@ -79,7 +79,7 @@ class Sub extends Super {
// instance method and static method with the same
// name. Furthermore, according to 7.7 a static variable induces an
// implicit getter function (a static method).
- static var instanceMethod2; /// 05: compile-time error
+ static var instanceMethod2; //# 05: compile-time error
foo() => 'foo';
}

Powered by Google App Engine
This is Rietveld 408576698