1--TEST--
2Test that mixed is a valid return type
3--FILE--
4<?php
5
6function foo(): mixed
7{
8    return null;
9}
10
11?>
12--EXPECT--
13