mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
12 lines
197 B
PHP
12 lines
197 B
PHP
--TEST--
|
|
Enum disallows constructor
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
public function __construct() {}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Enum Foo cannot include magic method __construct in %s on line %d
|