| Index: dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest1.dart
|
| diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest1.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest1.dart
|
| deleted file mode 100644
|
| index f8cc9dcd2001bff1627c3e41ba363868967c72d6..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstSuperNegativeTest1.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.
|
| -
|
| -// Expect error - Sub omits call to Base final ctor in the init list.
|
| -
|
| -class Base {
|
| - const Base();
|
| -}
|
| -
|
| -class Sub extends Base {
|
| - const Sub(a) : this.a_ = a;
|
| - final a_;
|
| -}
|
|
|