php-src/Zend/tests/closure_045.phpt

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.