No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / await_in_expressions3.php
blobac4017b7d86265dbc301a2762d6132a00c9b16b2
1 <?hh // strict
3 async function f1(Awaitable<int> $a): Awaitable<void> {
4 f2(await $a);
6 function f2(int $x): int {
7 return $x;