1--TEST--
2Check type hint compatibility in overrides with array hints.
3--FILE--
4<?php
5Class C { function f(array $a) {} }
6
7echo "No hint, should be array.\n";
8Class D extends C { function f($a) {} }
9?>
10==DONE==
11--EXPECTF--
12Strict Standards: Declaration of D::f() should be compatible with C::f(array $a) in %s on line 5
13No hint, should be array.
14==DONE==
15