mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
15 lines
246 B
Plaintext
15 lines
246 B
Plaintext
|
--TEST--
|
||
|
GH-7792 (Refer to enum as enum instead of class)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
interface A {
|
||
|
public function a(): void;
|
||
|
}
|
||
|
|
||
|
enum B implements A {}
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Enum B must implement 1 abstract private method (A::a) in %s on line %d
|