summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug31651.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug31651.phpt')
-rwxr-xr-xext/reflection/tests/bug31651.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/reflection/tests/bug31651.phpt b/ext/reflection/tests/bug31651.phpt
deleted file mode 100755
index 60bee14e9f..0000000000
--- a/ext/reflection/tests/bug31651.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays.)
---FILE--
-<?php
-
-class Test
-{
- public $a = array('a' => 1);
-}
-
-$ref = new ReflectionClass('Test');
-
-print_r($ref->getDefaultProperties());
-
-?>
---EXPECT--
-Array
-(
- [a] => Array
- (
- [a] => 1
- )
-
-)