php-src/Zend/tests/enum_in_stack_trace.phpt
Ilija Tovilo 998bce117c
Show enum cases in errors
Closes GH-14496
2024-06-10 22:58:25 +02:00

22 lines
288 B
PHP

--TEST--
Enum case is shown in stack trace
--FILE--
<?php
enum Foo {
case Bar;
}
function test($enum) {
throw new Exception();
}
test(Foo::Bar);
?>
--EXPECTF--
Fatal error: Uncaught Exception in %s:%d
Stack trace:
#0 %s(%d): test(Foo::Bar)
#1 {main}
thrown in %s on line %d