blob: 4b4f5ad522a9ac4069c7bb9eb799c103b4c44054 [file] [log] [blame]
// Copyright (c) 2018, 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.
/// @assertion Further, the interfaces B and C must be compatible. The on clause
/// introduces a synthetic interface combining B and C, call it A$super, which is
/// equivalent to the interface of a class declaration of the form:
/// abstract class A$super<X extends S, Y extends T> implements B, C {}
/// It is a compile-time error for the mixin declaration if the class declaration
/// above would not be valid.
///
/// @description Checks that it is a compile-time error for the mixin declaration
/// if the interfaces B and C are not compatible.
/// @author sgrekhov@unipro.ru
class S {}
class T {}
class X extends S {}
class Y extends T {}
class A<T> {
}
abstract class B<T> extends A<T> {
}
class C<T> extends B<T> {
}
mixin M<X extends S, Y extends T> on A<X>, B<Y> {
//^
// [analyzer] unspecified
// [cfe] unspecified
}
class MA extends C<X> with M<X, Y> {
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new MA();
}