New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / genva_preserves_type_signatures2.php
blobe69ae35b7d8a01370771cb666b4a2b8f0b71f11f
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
12 function inverted_physicists(Awaitable<int> $feynman, Awaitable<string> $boltzmann) : Awaitable<(int, string)> {
13 return genva($boltzmann, $feynman);