diff options
Diffstat (limited to 'Zend/tests/temporary_cleaning_002.phpt')
-rw-r--r-- | Zend/tests/temporary_cleaning_002.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/temporary_cleaning_002.phpt b/Zend/tests/temporary_cleaning_002.phpt index bea54e7f77..77be1dbd0a 100644 --- a/Zend/tests/temporary_cleaning_002.phpt +++ b/Zend/tests/temporary_cleaning_002.phpt @@ -3,26 +3,26 @@ Temporary leak on rope (encapsed string) --FILE-- <?php class Obj { - function __get($x) { - throw new Exception(); - } + function __get($x) { + throw new Exception(); + } } $x = new Obj; $y = 0; try { - $r = "$y|$x->x|"; + $r = "$y|$x->x|"; } catch (Exception $e) { } try { - $r = "$x->x|$y|"; + $r = "$x->x|$y|"; } catch (Exception $e) { } try { - $r = "$y|$y|$x->x"; + $r = "$y|$y|$x->x"; } catch (Exception $e) { } |