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