function f()

in testData/codeInsight/typeInference/PsalmMultilineArrayShape.php [3:15]


function f(){
  /** @var array{
   *   person: array{
   *      name?: Exception,
   *      age: int
   *     }
   *   } $test
   */
  $test = [];
  <type value="int|mixed">$test["person"]['age']</type>;
  <type value="Exception|mixed">$test["person"]['name']</type>;
  <type value="array|mixed">$test["person"]</type>;
}