Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
three_typedefs_loop.dart.textual_outline.expect
blob: 37b7fd2b2e0c0772d88c585d39bc1f867de360b7 [
file
] [
log
] [
blame
]
// @dart = 2.9
typedef
Foo
<
T
>
=
void
Function
(
Bar
<
T
>);
typedef
Bar
<
T
>
=
void
Function
(
Baz
<
T
>);
typedef
Baz
<
T
>
=
void
Function
(
Foo
<
T
>);
main
()
{}