Index: tests/language/src/StaticCallWrongArgumentCountNegativeTest.dart |
diff --git a/tests/language/src/StaticCallWrongArgumentCountNegativeTest.dart b/tests/language/src/StaticCallWrongArgumentCountNegativeTest.dart |
deleted file mode 100644 |
index 2bc05099657d23872f022e748198a8a06bba682b..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StaticCallWrongArgumentCountNegativeTest.dart |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-// Copyright (c) 2011, 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 mismatch in argument counts. |
- |
-class StaticCallWrongArgumentCountNegativeTest { |
- static void testMain() { |
- Niesen.goodCall(1, 2, 3); |
- // Bad call. |
- Niesen.goodCall(1, 2, 3, 4); |
- } |
-} |
- |
-class Niesen { |
- static int goodCall(int a, int b, int c) { |
- return a + b; |
- } |
-} |
- |
-main() { |
- StaticCallWrongArgumentCountNegativeTest.testMain(); |
-} |