xref: /PHP-8.3/ext/opcache/tests/gh8133.inc (revision 4397811d)
1<?php
2
3enum Foo
4{
5    case Bar;
6    case Baz;
7    const CASES = [Foo::Bar, Foo::Baz];
8}
9
10class Qux {
11    const CASES = [Foo::Bar, Foo::Baz];
12}
13