OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 abstract class S {} | |
6 | |
7 abstract class M<T> {} | |
8 | |
9 abstract class N<T> {} | |
10 | |
11 class C<T> extends S with M<C<T>>, N<C<T>> {} | |
12 | |
13 main() { | |
14 new C<int>(); | |
15 } | |
siva
2017/06/21 21:46:45
You may see failures in other tools (dart2js/ddc e
| |
OLD | NEW |