diff options
Diffstat (limited to 'tests/classes/destructor_visibility_002.phpt')
-rwxr-xr-x | tests/classes/destructor_visibility_002.phpt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/classes/destructor_visibility_002.phpt b/tests/classes/destructor_visibility_002.phpt deleted file mode 100755 index 2cc83334a9..0000000000 --- a/tests/classes/destructor_visibility_002.phpt +++ /dev/null @@ -1,24 +0,0 @@ ---TEST-- -ZE2 Ensuring destructor visibility ---SKIPIF-- -<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?> ---FILE-- -<?php - -class Base { - private function __destruct() { - echo __METHOD__ . "\n"; - } -} - -class Derived extends Base { -} - -$obj = new Derived; - -?> -===DONE=== ---EXPECTF-- -===DONE=== - -Warning: Call to private Derived::__destruct() from context '' during shutdown ignored in Unknown on line %d |