Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue44595.dart.textual_outline_modelled.expect
blob: 70d1eb0e03003357720d01f66f2b900d7907def7 [
file
] [
log
] [
blame
]
import
"dart:async"
;
T contextType
<
T
>(
Object
?
o
)
=>
o
as
T
;
T id
<
T
>(
T value
)
=>
value
;
extension
<
T
>
on T
{
void
checkStaticType
<
R
extends
Exactly
<
T
>>()
{}
}
main
()
async
{}
typedef
Exactly
<
T
>
=
T
Function
(
T
);