1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/closure_045.phpt
2011-09-07 06:46:27 +00:00

20 lines
313 B
PHP

--TEST--
Closure 045: Closures created in static methods are static, even without the keyword
--FILE--
<?php
class A {
static function foo() {
return function () {};
}
}
$a = A::foo();
$a->bindTo(new A);
echo "Done.\n";
--EXPECTF--
Warning: Cannot bind an instance to a static closure in %s on line %d
Done.