summaryrefslogtreecommitdiff
path: root/Zend/tests/bug80194.phpt
blob: 9a5cdcd718c21753bb729ae78caf918fa742b699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #80194: Assertion failure during block assembly of unreachable free with leading nop
--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)#2 (0) {
}