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

Unified Diff: tests/language/src/ConstructorNamedArgumentsTest.dart

Issue 9487008: Fix build break, test forgot to instantiate new constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed second test, didn't add any value Created 8 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/ConstructorNamedArgumentsTest.dart
diff --git a/tests/language/src/ConstructorNamedArgumentsTest.dart b/tests/language/src/ConstructorNamedArgumentsTest.dart
index 53666329902dcc62d9380dab8c9ac73da0a7a9bc..ed39afd734d8dbf3757c29f8c928e80b05313e0c 100644
--- a/tests/language/src/ConstructorNamedArgumentsTest.dart
+++ b/tests/language/src/ConstructorNamedArgumentsTest.dart
@@ -23,9 +23,6 @@ class X {
X.bar() : this(
1, /// 01: runtime error
a: 2);
- X.foobar() : this(1
- , a: 2 /// 02: runtime error
- );
X.baz() : this(a: 1, b: 2);
X.qux() : this(1, 2);
X.hest() : this();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698