1--TEST--
2Bug #60174 (Notice when array in method prototype error)
3--FILE--
4<?php
5Abstract Class Base {
6	public function test($foo, $extra = array("test")) {
7	}
8}
9
10class Sub extends Base {
11	public function test($foo, $extra) {
12	}
13}
14?>
15--EXPECTF--
16Strict Standards: Declaration of Sub::test() should be compatible with Base::test($foo, $extra = Array) in %sargument_restriction_006.php on line %d
17