| Index: frog/tests/leg/src/GenerateAtUseSiteTest.dart
|
| diff --git a/frog/tests/leg/src/GenerateAtUseSiteTest.dart b/frog/tests/leg/src/GenerateAtUseSiteTest.dart
|
| deleted file mode 100644
|
| index 1c7fc59621eca0b2f7028edbb871031b39271e6a..0000000000000000000000000000000000000000
|
| --- a/frog/tests/leg/src/GenerateAtUseSiteTest.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.
|
| -
|
| -#import("compiler_helper.dart");
|
| -
|
| -final String FIB = @"""
|
| -fib(n) {
|
| - if (n <= 1) return 1;
|
| - return fib(n - 1) + fib(n - 2);
|
| -}
|
| -""";
|
| -
|
| -main() {
|
| - // Make sure we don't introduce a new variable.
|
| - RegExp regexp = new RegExp("var $anyIdentifier =");
|
| - compileAndDoNotMatch(FIB, 'fib', regexp);
|
| -}
|
|
|