1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/enum/__toString.phpt
2022-08-23 13:32:34 +02:00

17 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