summaryrefslogtreecommitdiff
path: root/tests/classes/assign_op_property_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/assign_op_property_001.phpt')
-rw-r--r--tests/classes/assign_op_property_001.phpt31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/classes/assign_op_property_001.phpt b/tests/classes/assign_op_property_001.phpt
deleted file mode 100644
index 54e519e8f6..0000000000
--- a/tests/classes/assign_op_property_001.phpt
+++ /dev/null
@@ -1,31 +0,0 @@
---TEST--
-ZE2 assign_op property of overloaded object
---FILE--
-<?php
-
-class Test {
- private $real_a = 2;
-
- function __set($property, $value) {
- if ($property = "a") {
- $this->real_a = $value;
- }
- }
-
- function __get($property) {
- if ($property = "a") {
- return $this->real_a;
- }
- }
-}
-
-$obj = new Test;
-var_dump($obj->a);
-$obj->a += 2;
-var_dump($obj->a);
-echo "---Done---\n";
-?>
---EXPECT--
-int(2)
-int(4)
----Done---