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