Index: pkg/front_end/test/fasta/rasta/super_mixin.dart |
diff --git a/pkg/front_end/test/fasta/rasta/super_mixin.dart b/pkg/front_end/test/fasta/rasta/super_mixin.dart |
deleted file mode 100644 |
index a00e829f82ee8f7bb74120a08aecf9eeb67ad348..0000000000000000000000000000000000000000 |
--- a/pkg/front_end/test/fasta/rasta/super_mixin.dart |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-// Copyright (c) 2016, 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.md file. |
- |
-import "mixin_library.dart" show Mixin; |
- |
-class Super<S> { |
- foo() => 40; |
- f() => 3; |
-} |
- |
-class C<V> extends Super<V> with Mixin<V> { |
-} |
- |
-class D extends Super with Mixin { |
-} |
- |
-class C2<V> = Super<V> with Mixin<V>; |
- |
-class D2 = Super with Mixin; |
- |
-main() { |
- print(new C().foo()); |
- print(new C2().foo()); |
-} |