--TEST--
Check type hint compatibility in overrides with array hints.
--FILE--
<?php
Class { function f($a) {} }

echo 
"Array hint, should be nothing.\n";
Class 
extends { function f(array $a) {} }
?>
==DONE==
--EXPECTF--
Strict Standards: Declaration of D::f() should be compatible with C::f($a) in %s on line 5
Array hint, should be nothing.
==DONE==