diff options
Diffstat (limited to 'Zend/tests/bug50261.phpt')
-rw-r--r-- | Zend/tests/bug50261.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug50261.phpt b/Zend/tests/bug50261.phpt index ce120b9416..321e9cfb8b 100644 --- a/Zend/tests/bug50261.phpt +++ b/Zend/tests/bug50261.phpt @@ -12,12 +12,12 @@ class testClass { class testClass2 extends testClass { function __construct() { static $x = 0; - + if ($x) { print "Infinite loop...\n"; } else { $x++; - + parent::__construct(1); testclass::__construct(2); call_user_func(array('parent', '__construct'), 3); |