1--TEST--
2Test that the mixed parameter type accepts any kind of arguments in weak mode
3--FILE--
4<?php
5
6function foo(mixed $a)
7{
8}
9
10foo(null);
11foo(false);
12foo(1);
13foo(3.14);
14foo("");
15foo([]);
16foo(new stdClass());
17
18?>
19--EXPECT--
20