Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
tearoff_from_nullable_receiver.dart.textual_outline.expect
blob: 81af6ded33be9fe5f99aeb570d384f4560882716 [
file
] [
log
] [
blame
]
class
C
{
int
call
()
=>
0
;
}
functionContext
(
int
Function
()
f
)
{}
nullableFunctionContext
(
int
Function
()?
f
)
{}
foo
<
T
extends
C
?>(
C
?
c
,
T t
,
T
?
nt
)
{}
bar
<
T
extends
C
>(
C c
,
T t
)
{}
main
()
{}