1--TEST--
2Fully-qualified nullable parameter type
3--FILE--
4<?php
5
6namespace Foo;
7function test(?\stdClass $param) {}
8test(new \stdClass);
9
10?>
11===DONE===
12--EXPECT--
13===DONE===
14