No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / void_fun_in_mixed_context.php
blobd60c601288579553698cc98033f27ad4dcfc4b8e
1 <?hh // strict
3 function expectMixedReturn((function(int):mixed) $f):void { }
6 function testit():void {
7 expectMixedReturn((int $x) ==> { echo "c"; });