Sign in
dart
/
sdk.git
/
1d268045c0ed151be4c89ba68f2dc3a47b8c1cae
/
.
/
pkg
/
front_end
/
testcases
/
general
/
mixin_super_repeated.dart.textual_outline_modelled.expect
blob: d02d115b038293df911c4755a832c7b2858befc9 [
file
] [
log
] [
blame
]
class
Named
=
S
with
M
,
N
,
M
;
class
S
{}
main
()
{}
mixin M
{
var
m
;
}
mixin N on M
{
get
superM
=>
super
.
m
;
void
set
superM
(
value
)
{}
}