xref: /php-src/ext/opcache/tests/jit/gh8461-002.inc (revision 6c254131)
1<?php
2
3$x = 0;
4
5class UniqueList
6{
7    const A = 1;
8
9    public static function foo()
10    {
11        global $x;
12        $x += self::A;
13    }
14}
15