| Index: tests/language_2/closure_in_initializer_static_test.dart
|
| diff --git a/tests/language_2/closure_in_initializer_static_test.dart b/tests/language_2/closure_in_initializer_static_test.dart
|
| deleted file mode 100644
|
| index 281420ad3b4efe2d2c12b772198c9f7ec91ee547..0000000000000000000000000000000000000000
|
| --- a/tests/language_2/closure_in_initializer_static_test.dart
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -// 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.
|
| -
|
| -// Test that a parameter used in two different closures defined in a
|
| -// constructor initializer, is properly boxed.
|
| -
|
| -import "package:expect/expect.dart";
|
| -
|
| -class A {
|
| - var f;
|
| - var g;
|
| - A(a)
|
| - : f = (() => 42 + a),
|
| - g = (() => ++a) {
|
| - a = 4;
|
| - }
|
| -}
|
| -
|
| -class B extends A {
|
| - var h;
|
| - C(a)
|
| - : h = (() => ++a),
|
| - super(42);
|
| -}
|
| -
|
| -main() {
|
| - var a = new A(1);
|
| - a = new B(0);
|
| - var ah = /*@compile-error=unspecified*/ a.h();
|
| -}
|
|
|