| Index: frog/tests/leg_only/src/ParameterBailoutTest.dart
|
| diff --git a/frog/tests/leg_only/src/ParameterBailoutTest.dart b/frog/tests/leg_only/src/ParameterBailoutTest.dart
|
| deleted file mode 100644
|
| index 6101bb16545c482a7361aeffd83a342d26379987..0000000000000000000000000000000000000000
|
| --- a/frog/tests/leg_only/src/ParameterBailoutTest.dart
|
| +++ /dev/null
|
| @@ -1,18 +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.
|
| -
|
| -class Foo {
|
| - int takesAnInt(int val) {
|
| - return val + 1;
|
| - }
|
| -}
|
| -
|
| -takesAnInt(int val) {
|
| - return val + 1;
|
| -}
|
| -
|
| -main() {
|
| - Expect.equals("foo1", new Foo().takesAnInt("foo"));
|
| - Expect.equals("foo1", takesAnInt("foo"));
|
| -}
|
|
|