Sign in
dart
/
sdk.git
/
3b718daac6f227b77ccb38fd35c1d89041feabc5
/
.
/
pkg
/
front_end
/
testcases
/
general
/
inference_invariant_incompatible_constraints.dart.textual_outline.expect
blob: f858ee4ef5b4dba8d0fa8d8ad268fef9bf204e20 [
file
] [
log
] [
blame
]
typedef
Invariant
<
X
>
=
X
Function
(
X x
);
X inferable
<
X
>()
=>
throw
0
;
void
context
<
X
>(
Invariant
<
X
>
Function
()
g
)
=>
g
();
test
()
=>
context
(()
=>
inferable
());