mirror of
https://github.com/php/php-src.git
synced 2025-01-03 17:33:32 +08:00
a75c195000
Squashed commit of the following: commitf11ca0e7a5
Author: Dmitry Stogov <dmitry@zend.com> Date: Tue Dec 8 12:38:42 2015 +0300 Fixed test expectation commit211f873f54
Author: Dmitry Stogov <dmitry@zend.com> Date: Tue Dec 8 12:28:38 2015 +0300 Embed zend_class_constant.flags into zend_class_constants.value.u2.access_flags commit51deab84b2
Author: Dmitry Stogov <dmitry@zend.com> Date: Mon Dec 7 11:18:55 2015 +0300 Fixed issues found by Nikita commit544dbd5b47
Author: Dmitry Stogov <dmitry@zend.com> Date: Sat Dec 5 02:41:05 2015 +0300 Refactored immplementation of https://wiki.php.net/rfc/class_const_visibility @reeze created an RFC here and I emailed internals here and didn't get any responses positive/negative.
17 lines
295 B
PHP
17 lines
295 B
PHP
--TEST--
|
|
Class private constant visibility error
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
private const privateConst = 'privateConst';
|
|
}
|
|
|
|
var_dump(A::privateConst);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot access private const A::privateConst in %s:6
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line 6
|