mirror of
https://github.com/php/php-src.git
synced 2025-01-09 12:34:14 +08:00
14 lines
183 B
PHP
14 lines
183 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;
|
|
?>
|
|
--EXPECTF--
|
|
3
|