No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / unused_awaitable10.php
blobcbe206d528d6023c52859cd5e40cc60363406312
1 <?hh // strict
3 async function f(): Awaitable<int> {
4 return 1;
7 async function g(): Awaitable<?int> {
8 return null;
11 function h(): void {
12 $f = f();
13 $g = g();
15 $x = $f && $g;
16 if ($x) {