summaryrefslogtreecommitdiff
path: root/tests/lang/bug26182.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug26182.phpt')
-rw-r--r--tests/lang/bug26182.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/lang/bug26182.phpt b/tests/lang/bug26182.phpt
deleted file mode 100644
index 7417293928..0000000000
--- a/tests/lang/bug26182.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-Bug #26182 (Object properties created redundantly)
---INI--
-error_reporting=4095
---FILE--
-<?php
-
-class A {
- function NotAConstructor ()
- {
- if (isset($this->x)) {
- //just for demo
- }
- }
-}
-
-$t = new A ();
-
-print_r($t);
-
-?>
---EXPECT--
-A Object
-(
-)