summaryrefslogtreecommitdiff
path: root/Zend/tests/class_properties_static.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/class_properties_static.phpt')
-rw-r--r--Zend/tests/class_properties_static.phpt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Zend/tests/class_properties_static.phpt b/Zend/tests/class_properties_static.phpt
new file mode 100644
index 0000000000..9a56466340
--- /dev/null
+++ b/Zend/tests/class_properties_static.phpt
@@ -0,0 +1,20 @@
+--TEST--
+Static Class Property Expressions
+--FILE--
+<?php
+class Foo {
+ public $b1 = 1 + 1;
+ public $b2 = 1 << 2;
+ public $b3 = "foo " . " bar " . " baz";
+}
+$f = new Foo;
+var_dump(
+ $f->b1,
+ $f->b2,
+ $f->b3
+);
+?>
+--EXPECT--
+int(2)
+int(4)
+string(13) "foo bar baz"