Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue41349.dart.textual_outline_modelled.expect
blob: 545b414cc5bf68f1d7364893d9c29bab45d6da67 [
file
] [
log
] [
blame
]
class
A
{
foo
()
=>
23
;
}
expect
(
expected
,
actual
)
{}
extension B on A
?
{
bar
()
=>
87
;
foo
()
=>
42
;
}
extension C on A
{
bar
()
=>
123
;
}
extension D on
int
Function
()?
{
int
call
()
=>
76
;
}
main
()
{}
testA
(
A
?
a
)
{}
testFunction
(
int
Function
()?
f
)
{}