Begin naming table comparison
[hiphop-php.git] / hphp / hack / test / typecheck / unused_awaitable16.php
blob1e9ae2deea56949ad27b4fa011f743c859ab8f43
1 <?hh // strict
3 async function f(): Awaitable<string> {
4 return 'hehe';
7 async function g(): Awaitable<void> {
8 $gens = darray['a' => f(), 'b' => f(), 'c' => f()];
9 $gens = array_map($item ==> (bool)$item, $gens);