php-src/ext/opcache/tests/preload_gh10914.inc
Niels Dossche bc42179133 Fix GH-10914: OPCache with Enum and Callback functions results in segmentation fault
See linked issue for analysis.

Closes GH-11675.
2023-07-11 17:38:09 +02:00

6 lines
63 B
PHP

<?php
enum ExampleEnum: string
{
case FIRST = "AAA"."b";
}