Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
nullable_rhs_of_typedef.dart.textual_outline_modelled.expect
blob: 77912b279666f67d5abaf00ab41a1e09a2c91c0e [
file
] [
log
] [
blame
]
// @dart = 2.12
main
()
{}
typedef
F
=
void
Function
()?;
void
bar
(
F x
)
{}
void
baz
(
F
?
x
)
{}
void
foo
(
void
Function
()
x
)
{}