12345678910111213141516171819202122 |
- --TEST--
- Bug
- --FILE--
- <?php
- function test($x) {
- switch ($x->y) {
- default:
- throw new Exception;
- case 'foobar':
- return new stdClass();
- break;
- }
- }
- $x = (object)['y' => 'foobar'];
- var_dump(test($x));
- ?>
- --EXPECT--
- object(stdClass)
- }
|