| Index: pkg/fasta/test/rasta/super_mixin.dart | 
| diff --git a/pkg/fasta/test/rasta/super_mixin.dart b/pkg/fasta/test/rasta/super_mixin.dart | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..a00e829f82ee8f7bb74120a08aecf9eeb67ad348 | 
| --- /dev/null | 
| +++ b/pkg/fasta/test/rasta/super_mixin.dart | 
| @@ -0,0 +1,25 @@ | 
| +// 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()); | 
| +} | 
|  |