diff options
Diffstat (limited to 'Zend/tests/bug38623.phpt')
-rwxr-xr-x | Zend/tests/bug38623.phpt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Zend/tests/bug38623.phpt b/Zend/tests/bug38623.phpt deleted file mode 100755 index 9b042a9141..0000000000 --- a/Zend/tests/bug38623.phpt +++ /dev/null @@ -1,16 +0,0 @@ ---TEST-- -Bug #38623 (leaks in a tricky code with switch() and exceptions) ---FILE-- -<?php -try { - switch(strtolower("apache")) { - case "apache": - throw new Exception("test"); - break; - } -} catch (Exception $e) { - echo "ok\n"; -} -?> ---EXPECT-- -ok |