1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/Zend/tests/enum/__clone.phpt
2022-08-23 13:32:34 +02:00

16 lines
195 B
PHP

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