Untyped variadic function types should not be permitted in strict mode
[hiphop-php.git] / hphp / hack / test / typecheck / await_twice.php
blobacdf20263b177d8c065d115e6bd309fd1f274c16
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the BSD-style license found in the
7 * LICENSE file in the "hack" directory of this source tree. An additional grant
8 * of patent rights can be found in the PATENTS file in the same directory.
12 async function tweedledum(): Awaitable<string> {
13 return "alice";
16 async function tweedledee(): Awaitable<Awaitable<string>> {
17 return tweedledum();
20 async function whats_in_the_rabbit_hole(): Awaitable<void> {
21 $a = await tweedledee();
22 $b = await $a;
23 print($b);