diff options
Diffstat (limited to 'Zend/tests/temporary_cleaning_011.phpt')
-rw-r--r-- | Zend/tests/temporary_cleaning_011.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/temporary_cleaning_011.phpt b/Zend/tests/temporary_cleaning_011.phpt index aa1be00e56..09e2148f72 100644 --- a/Zend/tests/temporary_cleaning_011.phpt +++ b/Zend/tests/temporary_cleaning_011.phpt @@ -3,17 +3,17 @@ Live range & lists --FILE-- <?php class A { - function __destruct() { - throw new Exception(); - } + function __destruct() { + throw new Exception(); + } } $b = new A(); $x = 0; $c = [[$x,$x]]; try { - list($a, $b) = $c[0]; + list($a, $b) = $c[0]; } catch (Exception $e) { - echo "exception\n"; + echo "exception\n"; } ?> --EXPECT-- |