nullable_null.phpt   [plain text]


--TEST--
nullable class
--FILE--
<?php
function test(Foo $a = null) {
	echo "ok\n";
}
test(null);
?>
--EXPECT--
ok