1--TEST--
2Test that the mixed parameter type can't be used together with any other type
3--FILE--
4<?php
5
6function foo(mixed|int|null $a)
7{
8}
9
10?>
11--EXPECTF--
12Fatal error: Type mixed can only be used as a standalone type in %s on line %d
13