ru_php/Zend/tests/constexpr/gh7771_2_definition.inc

9 lines
110 B
PHP

<?php
class Foo {
public const BAR =
self::BAZ
+ NonExistent::CLASS_CONSTANT;
public const BAZ = 42;
}