17 lines
199 B
Plaintext
17 lines
199 B
Plaintext
|
|
--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
|