Sign in
dart
/
sdk
/
c24c41eeac757390e77daed51a15652ee9195acc
/
.
/
pkg
/
front_end
/
testcases
/
patterns
/
multiple_targets.dart.textual_outline.expect
blob: 63b3da3a7e08a32bff87e5785783cfce83bed289 [
file
] [
log
] [
blame
]
class
A
<
T
>
{
final
T foo
;
A
(
this
.
foo
);
}
class
B
{
final
num foo
;
B
(
this
.
foo
);
}
class
C
implements
A
<int>
,
B
{
final
int
foo
;
C
(
this
.
foo
);
}
test
(
o
)
{}
main
()
{}
expect
(
expected
,
actual
)
{}