Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / array_map_explicitly_typed_arity.php
blob335675c592bedc5e8c379b1593db4918af2a991c
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 function f(): int {
5 $x = array_map<int, int>(function($x, $y) { return $x + $y; }, vec[1, 2], vec[2,3]);
6 return $x[0];