Index: dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart |
deleted file mode 100644 |
index 5d593e2699af7a543aaea9b973b6234a1af220f9..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart |
+++ /dev/null |
@@ -1,15 +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. |
- |
-// Check that oen cannot access a static getter through super. |
- |
-class A { |
- static get x {} |
-} |
- |
-class B { |
- foo() { |
- return super.x; |
- } |
-} |