1--TEST--
2Test that the mixed|void return type is not valid
3--FILE--
4<?php
5
6function foo(): mixed|void
7{
8    return null;
9}
10
11?>
12--EXPECTF--
13Fatal error: Type mixed can only be used as a standalone type in %s on line %d
14