13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
|
|
--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
|