blob: cc3aa690a1a3744d17b4be4f5143cf5fe236fc74 [file] [log] [blame]
// Copyright (c) 2022, 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.
// Allow typedef base mixins to be mixed in by multiple classes outside the
// library.
import 'package:expect/expect.dart';
import 'base_mixin_typedef_with_lib.dart';
abstract base class AOutside with BaseMixinTypeDef {}
base class AOutsideImpl extends AOutside {}
base class BOutside with BaseMixinTypeDef {}
main() {
Expect.equals(0, AOutsideImpl().foo);
Expect.equals(0, BOutside().foo);
}