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

Unified Diff: tests/language/regress_28217_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/regress_28217_test.dart
diff --git a/tests/language/regress_28217_test.dart b/tests/language/regress_28217_test.dart
index 6761b81dca948c6cd53540ec574abe0773b321ce..2fce2e7f266e506fb51a32d23804f3c8faa31dad 100644
--- a/tests/language/regress_28217_test.dart
+++ b/tests/language/regress_28217_test.dart
@@ -6,9 +6,9 @@
// redirecting to a factory constructor.
class B {
- B() : this.a(); /// none: compile-time error
- factory B.a() { } /// 01: compile-time error
- B.a(); /// 02: ok
+ B() : this.a(); //# none: compile-time error
+ factory B.a() { } //# 01: compile-time error
+ B.a(); //# 02: ok
}
main() => new B();

Powered by Google App Engine
This is Rietveld 408576698