Index: tests/language/src/GetterSetterInLibTest.dart |
diff --git a/tests/language/src/GetterSetterInLibTest.dart b/tests/language/src/GetterSetterInLibTest.dart |
deleted file mode 100644 |
index 9af70635a569c68184dad4431e80f018cc2ecd6f..0000000000000000000000000000000000000000 |
--- a/tests/language/src/GetterSetterInLibTest.dart |
+++ /dev/null |
@@ -1,12 +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. |
- |
-#library('GetterSetterInLibTest'); |
-#import('GetterSetterInLib.dart'); |
- |
-main() { |
- Expect.equals(42, foo); |
- foo = 43; |
- Expect.equals(42, foo); |
-} |