diff options
Diffstat (limited to 'tests/classes/destructor_visibility_002.phpt')
-rw-r--r-- | tests/classes/destructor_visibility_002.phpt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/classes/destructor_visibility_002.phpt b/tests/classes/destructor_visibility_002.phpt new file mode 100644 index 0000000..2cc8333 --- /dev/null +++ b/tests/classes/destructor_visibility_002.phpt @@ -0,0 +1,24 @@ +--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 |