summaryrefslogtreecommitdiff
path: root/tests/classes/destructor_visibility_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/destructor_visibility_003.phpt')
-rw-r--r--tests/classes/destructor_visibility_003.phpt28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/classes/destructor_visibility_003.phpt b/tests/classes/destructor_visibility_003.phpt
new file mode 100644
index 0000000..83e3efe
--- /dev/null
+++ b/tests/classes/destructor_visibility_003.phpt
@@ -0,0 +1,28 @@
+--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 {
+ public function __destruct() {
+ echo __METHOD__ . "\n";
+ }
+}
+
+$obj = new Derived;
+
+unset($obj); // Derived::__destruct is being called not Base::__destruct
+
+?>
+===DONE===
+--EXPECTF--
+Derived::__destruct
+===DONE===