blob: c841e0481f4c4d7a8c13492933e6057cce63a8c8 [file] [log] [blame]
// Copyright (c) 2021, 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.
class Super {
void extendedConcreteMethod() {}
void extendedAbstractMethod();
void extendedConcreteMixedInConcreteMethod() {}
void extendedAbstractMixedInConcreteMethod();
void extendedConcreteMixedInAbstractMethod() {}
void extendedAbstractMixedInAbstractMethod();
}
class Mixin {
void mixedInConcreteMethod(int i) {}
void mixedInAbstractMethod(int i);
void extendedConcreteMixedInConcreteMethod(int i) {}
void extendedAbstractMixedInConcreteMethod(int i) {}
void extendedConcreteMixedInAbstractMethod(int i);
void extendedAbstractMixedInAbstractMethod(int i);
}
class ClassMixin extends Super with Mixin {}
class NamedMixin = Super with Mixin;
main() {}