Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/tests/classes/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/tests/classes/constants_visibility_008.phpt

--TEST--
Defined on private constant should not raise exception
--FILE--
<?php

class Foo
{
    private const BAR = 1;
}
echo (int)defined('Foo::BAR');
--EXPECT--
0