blob: 26646fc6097d2dedf5c2ae256f7a8c8ea6986399 [file] [log] [blame]
library mixins_base;
mixin AMixin {}
class ThisClass {
String? property;
}
/// A class that extends another class with a new-style mixin, then is
/// reexported a couple of times similar to how Flutter does things.
class MixedIn extends ThisClass with AMixin {}