| Index: dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest2.dart
|
| diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest2.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest2.dart
|
| deleted file mode 100644
|
| index e273f121135e5821119c7887a3bf9237655cb3ab..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest2.dart
|
| +++ /dev/null
|
| @@ -1,13 +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.
|
| -
|
| -// expect error - Sub calls a non-const super.
|
| -class Base {
|
| - Base() { }
|
| -}
|
| -
|
| -class Sub extends Base {
|
| - const Sub(a) : super(1), this.a_ = a;
|
| - final a_;
|
| -}
|
|
|