1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/Zend/tests/magic_methods_003.phpt
2020-04-27 16:32:00 +02:00

15 lines
231 B
PHP

--TEST--
Testing __unset declaring as static
--FILE--
<?php
class foo {
static function __unset($a) {
print "unset\n";
}
}
?>
--EXPECTF--
Warning: The magic method foo::__unset() cannot be static in %s on line %d