Move io_tests to folly/io/async/test
[hiphop-php.git] / hphp / hack / test / typecheck / void_fun_in_mixed_context.php
blob804b141cbb307afb54b5eabd8b13fcc87b8fa3dd
1 <?hh
3 function expectMixedReturn((function(int):mixed) $f):void { }
6 function testit():void {
7 expectMixedReturn((int $x) ==> { echo "c"; });