Index: tests/language/call_function_apply_test.dart |
diff --git a/tests/language/call_function_apply_test.dart b/tests/language/call_function_apply_test.dart |
deleted file mode 100644 |
index 935cfaf832aff599478847534822d651a4ddcd51..0000000000000000000000000000000000000000 |
--- a/tests/language/call_function_apply_test.dart |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-// Copyright (c) 2015, 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. |
- |
-import "package:expect/expect.dart"; |
- |
-class A { |
- call({a: 42}) { |
- return 499 + a; |
- } |
-} |
- |
-main() { |
- Expect.equals(497, Function.apply(new A(), [], {#a: -2})); |
-} |