mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
16 lines
240 B
PHP
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
|