blob: 456bcf4a5b5b039d7fe9d04a8328fed6628630d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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
|