1--TEST--
2Compiler prevents `abstract` methods on enums classes (GH-16067)
3--FILE--
4<?php
5
6enum Example {
7 abstract public function foo();
8}
9
10?>
11--EXPECTF--
12Fatal error: Enum method Example::foo() must not be abstract in %s on line 4
13