Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
definite_assignment_and_completion.dart.textual_outline.expect
blob: 5f6d9918649c4e124fd6123e3572dd04d0644d6f [
file
] [
log
] [
blame
]
int
foo
()
{}
int
bar
()
=>
0
;
int
baz
(
int
x
)
{}
int
boz
(
int
x
)
=>
x
;
class
Class
{
final
int
x
;
const
Class
(
int
x
)
:
this
.
x
=
x
;
int
foo
()
{}
int
bar
()
=>
0
;
int
baz
(
int
x
)
{}
int
boz
(
int
x
)
=>
x
;
}
main
()
{}