1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/enum/__wakeup.phpt
2025-10-06 10:30:27 +02:00

17 lines
199 B
PHP

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