Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
nullable_param.dart.textual_outline.expect
blob: 3d0a4271849dbe4dd9894909b3468f206fd5bd3e [
file
] [
log
] [
blame
]
class
Foo
{
int
?
field
;
int
?
bar
(
int
?
x
)
{}
}
main
()
{}
int
test_nullable_function_type_formal_param
({
int
f
()?:
null
})
{}