php-src/ext/opcache/tests/gh9968-2.inc
2022-11-25 14:02:45 +01:00

16 lines
254 B
PHP

<?php
class Root1_Constant_Definer
{
const CONSTANT = 'value';
}
class Root1_Constant_Empty
{
}
class Root1_Constant_Referencer extends Root2_Empty_Empty
{
protected $propertyReferencingAnExternalConstant = Root1_Constant_Definer::CONSTANT;
}