blob: e2eaf1e714136a8b6b1721b10c5b95a617886364 [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 A<X> {}
mixin M {}
class C<X> = A<X> with M;
main() {
C.new;
}