php-src/Zend/tests/enum/__unset.phpt
2022-08-23 13:32:34 +02:00

16 lines
220 B
PHP

--TEST--
Enum __unset
--FILE--
<?php
enum Foo {
case Bar;
public function __unset($property) {
return;
}
}
?>
--EXPECTF--
Fatal error: Enum Foo cannot include magic method __unset in %s on line %d