1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 07:58:20 +02:00
Files
archived-php-src/Zend/tests/enum/__wakeup.phpt
T
2022-08-23 13:32:34 +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