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

16 lines
245 B
PHP

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