1--TEST--
2False can be used as a standalone type
3--FILE--
4<?php
5
6function test(false $v): false {
7    return $v;
8}
9
10var_dump(test(false));
11
12?>
13--EXPECT--
14bool(false)
15