xref: /PHP-8.3/ext/opcache/tests/gh9968-2.inc (revision 91b3b58f)
1<?php
2
3class Root1_Constant_Definer
4{
5    const CONSTANT = 'value';
6}
7
8class Root1_Constant_Empty
9{
10}
11
12class Root1_Constant_Referencer extends Root2_Empty_Empty
13{
14    protected $propertyReferencingAnExternalConstant = Root1_Constant_Definer::CONSTANT;
15}
16