summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_033.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2009-01-03 17:48:40 +0000
committerMarcus Boerger <helly@php.net>2009-01-03 17:48:40 +0000
commit0e131653c17b22a1609387d758ffecaf8e8f64bc (patch)
treef5bb0595ee86c9b9a9fe35f3ab114aee0539061c /Zend/tests/closure_033.phpt
parent7ca830742e7668e04c2fa33da81220517ce0f2d8 (diff)
downloadphp-git-0e131653c17b22a1609387d758ffecaf8e8f64bc.tar.gz
- MFH Rebind closure when binding to property
Diffstat (limited to 'Zend/tests/closure_033.phpt')
-rwxr-xr-xZend/tests/closure_033.phpt28
1 files changed, 28 insertions, 0 deletions
diff --git a/Zend/tests/closure_033.phpt b/Zend/tests/closure_033.phpt
new file mode 100755
index 0000000000..f6510066bb
--- /dev/null
+++ b/Zend/tests/closure_033.phpt
@@ -0,0 +1,28 @@
+--TEST--
+Closure 033: Dynamic closure property and private function
+--FILE--
+<?php
+
+class Test {
+ public $func;
+ function __construct() {
+ $this->func = function() {
+ echo __METHOD__ . "()\n";
+ };
+ }
+ private function func() {
+ echo __METHOD__ . "()\n";
+ }
+}
+
+$o = new Test;
+$f = $o->func;
+$f();
+$o->func();
+
+?>
+===DONE===
+--EXPECTF--
+Test::{closure}()
+
+Fatal error: Call to private method Test::func() from context '' in %sclosure_033.php on line %d