mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
194 B
PHP
12 lines
194 B
PHP
--TEST--
|
|
Enum disallows destructor
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
public function __destruct() {}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Enum Foo cannot include magic method __destruct in %s on line %d
|