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

Unified Diff: tests/language/regress_27617_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/regress_26855_test.dart ('k') | tests/language/regress_28217_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/regress_27617_test.dart
diff --git a/tests/language/regress_27617_test.dart b/tests/language/regress_27617_test.dart
index f584b44f9a2b08e72e8f995218d9e9332baa861b..c5f6c637b2773547088f32f2a5feda0e6d010ba5 100644
--- a/tests/language/regress_27617_test.dart
+++ b/tests/language/regress_27617_test.dart
@@ -8,9 +8,9 @@ class Foo {
Foo._(this.greeting) { }
// Const constructor must not redirect to non-const constructor.
- const Foo.hi() : this._('hi'); // /// 1: compile-time error
+ const Foo.hi() : this._('hi'); // //# 1: compile-time error
}
main() {
- const h = const Foo.hi(); // /// 1: continued
+ const h = const Foo.hi(); // //# 1: continued
}
« no previous file with comments | « tests/language/regress_26855_test.dart ('k') | tests/language/regress_28217_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698