diff options
author | Marcus Boerger <helly@php.net> | 2009-01-03 17:48:40 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2009-01-03 17:48:40 +0000 |
commit | 0e131653c17b22a1609387d758ffecaf8e8f64bc (patch) | |
tree | f5bb0595ee86c9b9a9fe35f3ab114aee0539061c /Zend/tests/closure_033.phpt | |
parent | 7ca830742e7668e04c2fa33da81220517ce0f2d8 (diff) | |
download | php-git-0e131653c17b22a1609387d758ffecaf8e8f64bc.tar.gz |
- MFH Rebind closure when binding to property
Diffstat (limited to 'Zend/tests/closure_033.phpt')
-rwxr-xr-x | Zend/tests/closure_033.phpt | 28 |
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 |