Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue42579.dart.textual_outline.expect
blob: 8c9bcffc29094fab60953d4ea72f30001ae0a29d [
file
] [
log
] [
blame
]
class
A
<
T
>
{}
S foo
<
S
>()
=>
throw
"foo"
;
bar
<
R
>(
A
<
R
>
a
)
{}
baz
()
=>
bar
(
foo
());
main
()
{}