summaryrefslogtreecommitdiff
path: root/tests/lang/bug24436.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24436.phpt')
-rw-r--r--tests/lang/bug24436.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/bug24436.phpt b/tests/lang/bug24436.phpt
deleted file mode 100644
index b0cfbe0931..0000000000
--- a/tests/lang/bug24436.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Bug #24436 (isset() and empty() produce errors with non-existent variables in objects)
---FILE--
-<?php
-class test {
- function __construct() {
- if (empty($this->test[0][0])) { print "test1";}
- if (!isset($this->test[0][0])) { print "test2";}
- }
-}
-
-$test1 = new test();
-?>
---EXPECT--
-test1test2