| Index: pkg/front_end/testcases/inference/inferred_initializing_formal_checks_default_value.dart
|
| diff --git a/pkg/front_end/testcases/inference/inferred_initializing_formal_checks_default_value.dart b/pkg/front_end/testcases/inference/inferred_initializing_formal_checks_default_value.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2cab048af7b903799962ebd543b18242fc71f486
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/inferred_initializing_formal_checks_default_value.dart
|
| @@ -0,0 +1,11 @@
|
| +// Copyright (c) 2017, 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.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +class Foo {
|
| + var /*@topType=int*/ x = 1;
|
| + Foo([this.x = /*error:INVALID_ASSIGNMENT*/ "1"]);
|
| +}
|
|
|