Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
mixin_with_static_member.dart.textual_outline.expect
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
()
{}