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