diff options
Diffstat (limited to 'Zend/tests/bug48215_2.phpt')
-rw-r--r-- | Zend/tests/bug48215_2.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug48215_2.phpt b/Zend/tests/bug48215_2.phpt index 458e68144f..67380063c6 100644 --- a/Zend/tests/bug48215_2.phpt +++ b/Zend/tests/bug48215_2.phpt @@ -7,7 +7,7 @@ class a { public function a() { echo __METHOD__ . "\n"; } } class b extends a {} -class c extends b { +class c extends b { function __construct() { b::b(); } |