Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / funcall_explicit_arg.php
blob9ddc1d207a694e910e4db0b3f9f00463de87d0c5
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 function foo<T1, T2>(T1 $x) : T1 {
5 return $x;
8 function bar() : int {
9 return foo<int, string>(5);