1--TEST--
2nullable class
3--FILE--
4<?php
5function test(Foo $a = null) {
6    echo "ok\n";
7}
8test(null);
9?>
10--EXPECTF--
11Deprecated: test(): Implicitly marking parameter $a as nullable is deprecated, the explicit nullable type must be used instead in %s on line %d
12ok
13