diff options
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/030.phpt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/lang/030.phpt b/tests/lang/030.phpt index ba809c8e31..758369bf08 100644 --- a/tests/lang/030.phpt +++ b/tests/lang/030.phpt @@ -1,7 +1,5 @@ --TEST-- $this in constructor test ---POST-- ---GET-- --FILE-- <?php class foo { @@ -21,7 +19,7 @@ function &foo2(&$foo) { } -$bar1 =& new foo('constructor'); +$bar1 =new foo('constructor'); $bar1->Name = 'outside'; $bar1->echoName(); $List->echoName(); |