Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_types_on_loop_indices_for_each_loop.dart.textual_outline_modelled.expect
blob: b1dd9b91ab95bdc3e9e8b438818d06d5951acb32 [
file
] [
log
] [
blame
]
library test
;
class
Bar
<
T
extends
Iterable
<
String
>>
{
void
foo
(
T t
)
{}
}
class
Baz
<
T
,
E
extends
Iterable
<
T
>,
S
extends
E
>
{
void
foo
(
S t
)
{}
}
class
Foo
{
int
bar
=
42
;
}
main
()
{}
test
()
{}