blob: 8f45af695a2e39f121f944244819eb02b0d9d3de [file] [log] [blame]
// Copyright (c) 2023, 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 {
Super.named();
}
mixin Mixin {}
class Class extends Super with Mixin {
Class();
}