--TEST--
Omitting optional arg in method inherited from abstract class 
--FILE--
<?php

abstract class {
    function 
foo($arg 1) {}
}

class 
extends {
    function 
foo() {
        echo 
"foo\n";
    }
}

$b = new B();
$b->foo();

?>
--EXPECTF--
Strict Standards: Declaration of B::foo() should be compatible with A::foo($arg = 1) in %s on line %d
foo