Index: tests/language/parameter_initializer6_negative_test.dart |
diff --git a/tests/language/parameter_initializer6_negative_test.dart b/tests/language/parameter_initializer6_negative_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..840fd659547fd71aa9d2ad4ec34e332c7918ea0e |
--- /dev/null |
+++ b/tests/language/parameter_initializer6_negative_test.dart |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+// It is a compile-time error if a named formal parameter begins with an '_' |
+ |
+class Foo { |
+ num _y; |
+ Foo.optional_private([this._y = 77]) {} |
+} |
+ |
+main() { |
+ var obj; |
+ obj = new Foo.optional_private(_y: 222); |
+ Expect.equals(222, obj._y); |
+ |
+ obj = new Foo.optional_private(); |
+ Expect.equals(77, obj._y); |
+} |