Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / await_in_expressions7.php
blob6aeb7f78b7a0fcdb9a5c231cb870844c1f4933fa
1 <?hh
3 async function f1(Awaitable<int> $a): Awaitable<void> {
4 $x = 1;
5 switch ($x) {
6 case await $a: {