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

16 lines
240 B
PHP

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