1--TEST--
2Test that the mixed parameter type can have any default value
3--FILE--
4<?php
5
6function foo(mixed $a = null, mixed $b = false, mixed $c = 1, mixed $d = 3.13, mixed $e = "", mixed $f = [])
7{
8}
9
10?>
11--EXPECT--
12