Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
rasta
/
super_mixin.dart.textual_outline.expect
blob: 73b67ed6c77e631dbdfc14e25cd55b1482785078 [
file
] [
log
] [
blame
]
import
"mixin_library.dart"
show
Mixin
;
class
Super
<
S
>
{
foo
()
=>
40
;
f
()
=>
3
;
}
class
C
<
V
>
extends
Super
<
V
>
with
Mixin
<
V
>
{}
class
D
extends
Super
with
Mixin
{}
class
C2
<
V
>
=
Super
<
V
>
with
Mixin
<
V
>;
class
D2
=
Super
with
Mixin
;
main
()
{}