summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_033.phpt
blob: bc7eb88b2f0b91e061f58db957eaf66712046c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--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: Uncaught exception 'EngineException' with message 'Call to private method Test::func() from context ''' in %sclosure_033.php:%d
Stack trace:
#0 {main}
  thrown in %sclosure_033.php on line %d