1--TEST--
2Enum disallows constructor
3--FILE--
4<?php
5
6enum Foo {
7    public function __construct() {}
8}
9
10?>
11--EXPECTF--
12Fatal error: Enum may not include __construct in %s on line %d
13