mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
225 B
PHP
16 lines
225 B
PHP
--TEST--
|
|
Enum __unserialize
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar;
|
|
|
|
public function __unserialize(array $data) {
|
|
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Enum Foo cannot include magic method __unserialize in %s on line %d
|