1--TEST--
2Null and false can be used in a union type
3--FILE--
4<?php
5
6function test1(): null|false {}
7function test2(): false|null {}
8
9?>
10===DONE===
11--EXPECT--
12===DONE===
13