Index: tests/language/src/ConstructorCallWrongArgumentCountNegativeTest.dart |
diff --git a/tests/language/src/ConstructorCallWrongArgumentCountNegativeTest.dart b/tests/language/src/ConstructorCallWrongArgumentCountNegativeTest.dart |
deleted file mode 100644 |
index 183a640d398116b7c6a403e22b3c7e1e4c0641bb..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ConstructorCallWrongArgumentCountNegativeTest.dart |
+++ /dev/null |
@@ -1,23 +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 ConstructorCallWrongArgumentCountNegativeTest { |
- static void testMain() { |
- Stockhorn nh = new Stockhorn(1); |
- nh.goodCall(1, 2, 3); |
- nh = new Stockhorn(); |
- } |
-} |
- |
-class Stockhorn { |
- Stockhorn(int a) {} |
- int goodCall(int a, int b, int c) { |
- return a + b; |
- } |
-} |
- |
-main() { |
- ConstructorCallWrongArgumentCountNegativeTest.testMain(); |
-} |