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

Unified Diff: tests/language/constructor_redirect2_test.dart

Issue 1437463005: Compute NewStructure in resolution. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 1 month 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/compiler/dart2js/message_kind_helper.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/constructor_redirect2_test.dart
diff --git a/tests/language/constructor_redirect2_test.dart b/tests/language/constructor_redirect2_test.dart
index e0ceb8d144b34a272a1944e8eeee676b08ea9fda..b8d8db4438c9449c4126b34b2cda9d60727e8d41 100644
--- a/tests/language/constructor_redirect2_test.dart
+++ b/tests/language/constructor_redirect2_test.dart
@@ -23,7 +23,7 @@ class A {
main() {
new A(3);
new A.illegalBody(10); /// 01: continued
- new A.illegalInit(10); /// 02: continued
+ new A.illegalInit(); /// 02: continued
new A.illegalFormal(10); /// 03: continued
- new A.illegalSuper(10); /// 04: continued
+ new A.illegalSuper(); /// 04: continued
}
« no previous file with comments | « tests/compiler/dart2js/message_kind_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698