summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29944.phpt
blob: 6c0cf1ec7a6dc0c23adab0cf5c3c5425794d0d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #29944 (Function defined in switch, crashes)
--FILE--
<?php
$a = 1;
switch ($a) {
  case 1:
    function foo($a) {
      return "ok\n";
    }
    echo foo($a);
}
?>
--EXPECT--
ok