1--TEST--
2Arginfo / zpp consistency check for call_user_func() in strict context
3--FILE--
4<?php
5declare(strict_types=1);
6
7namespace Foo;
8
9// strlen() will be called with strict_types=0, so this is legal.
10var_dump(call_user_func('strlen', false));
11
12?>
13--EXPECT--
14int(0)
15