Index: dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperMethodNegativeTest.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperMethodNegativeTest.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperMethodNegativeTest.dart |
deleted file mode 100644 |
index e8b51ced03d29cd4c2d83ed2902d6ed52e7758ab..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/StaticSuperMethodNegativeTest.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 one cannot access a static method through super. |
- |
-class A { |
- static x() {} |
-} |
- |
-class B { |
- foo() { |
- return super.x; |
- } |
-} |