blob: 8c28f5b58a2979c4c908a47870fef38954beab7e [file] [log] [blame]
// Copyright (c) 2017, 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.
// TODO(51557): Decide if the mixins being applied in this test should be
// "mixin", "mixin class" or the test should be left at 2.19.
// @dart=2.19
abstract class S {}
abstract class M<T> {}
abstract class N<T> {}
class C<T> extends S with M<C<T>>, N<C<T>> {}
main() {
new C<int>();
}