Refactor the parsing and processing of configuration options ... just a bit ...
[hiphop-php.git] / hphp / test / slow / array_init / 246.php
blob1032bc03c794ea2ccf29dc41dc18a25e4fe2ca14
1 <?php
3 function f() {
4 throw new Exception();
6 function test() {
7 $a = array(1, f(), 2, f(), 3);
8 var_dump($a);
10 try {
11 test();
13 catch (Exception $e) {