summaryrefslogtreecommitdiff
path: root/tests/classes/incdec_property_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/incdec_property_003.phpt')
-rw-r--r--tests/classes/incdec_property_003.phpt31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/classes/incdec_property_003.phpt b/tests/classes/incdec_property_003.phpt
deleted file mode 100644
index d26277ab8d..0000000000
--- a/tests/classes/incdec_property_003.phpt
+++ /dev/null
@@ -1,31 +0,0 @@
---TEST--
-ZE2 pre increment/decrement 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;
-var_dump($obj->a);
-echo "---Done---\n";
-?>
---EXPECT--
-int(2)
-int(3)
----Done---