blob: 4b1e84feda6b416ee3c7918f7cb311b2d8132a0a [file] [log] [blame]
// @dart = 2.9
class A extends B with M {}
class B {
final Object m = null;
}
class M {
static Object m() => null;
}
main() {}