summaryrefslogtreecommitdiff
path: root/Zend/tests/bug80046.phpt
blob: 87a493c20308ccf3994659c5c12c65a3b7be8c21 (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 #80046: FREE for SWITCH_STRING optimized away
--FILE--
<?php

function test($foo) {
    switch ($foo . 'Bar') {
        case 'A':
            throw new Exception('A');
        default:
            throw new Exception('Default');
    }
}
try {
    test('Foo');
} catch (Exception $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
Default