php-src/Zend/tests/class_properties_dynamic.phpt
2020-02-03 22:52:20 +01:00

14 lines
191 B
PHP

--TEST--
Class Property Expressions
--FILE--
<?php
class Foo {
const BAR = 1 << 0;
const BAZ = 1 << 1;
public $bar = self::BAR | self::BAZ;
}
echo (new Foo)->bar;
?>
--EXPECT--
3