xref: /PHP-8.2/Zend/tests/enum/__debugInfo.phpt (revision 9b984f52)
1--TEST--
2Enum __debugInfo
3--FILE--
4<?php
5
6enum Foo {
7    case Bar;
8
9    public function __debugInfo(): array {
10        return $this->cases();
11    }
12}
13
14?>
15--EXPECTF--
16Fatal error: Enum Foo cannot include magic method __debugInfo in %s on line %d
17