1--TEST--
2Static Class Property Expressions
3--FILE--
4<?php
5class Foo {
6 public $b1 = 1 + 1;
7 public $b2 = 1 << 2;
8 public $b3 = "foo " . " bar " . " baz";
9}
10$f = new Foo;
11var_dump(
12 $f->b1,
13 $f->b2,
14 $f->b3
15);
16?>
17--EXPECT--
18int(2)
19int(4)
20string(13) "foo bar baz"
21