testData/codeInsight/inspections/UndefinedClassClosure.php (
8
lines of code) (
raw
):
<?php namespace K; /** * @param array<int, Closure> $arr * @param callable():int $arr */ function takesArray(array $arr) { if ($arr) { echo $arr[1](1); } }