blob: 501a8717f80ebddf7d1105e31f9f8476576551f1 [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.
// Other-library declarations used by mixin_class_typedef_test.dart.
mixin class MixinClass {
int foo = 0;
}
typedef MixinClassTypeDef = MixinClass;
class A with MixinClassTypeDef {}