Index: dart/compiler/javatests/com/google/dart/compiler/resolver/UnresolvedSuperFieldNegativeTest.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/UnresolvedSuperFieldNegativeTest.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/UnresolvedSuperFieldNegativeTest.dart |
deleted file mode 100644 |
index 2b3ef2dad4a60fa579cdf7f607be7aa0c18a880f..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/UnresolvedSuperFieldNegativeTest.dart |
+++ /dev/null |
@@ -1,14 +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 an unresolved super field is an error. |
- |
-class A { |
-} |
- |
-class B { |
- foo() { |
- return super.x; |
- } |
-} |