summaryrefslogtreecommitdiff
path: root/Zend/tests/bug48912.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug48912.phpt')
-rw-r--r--Zend/tests/bug48912.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/Zend/tests/bug48912.phpt b/Zend/tests/bug48912.phpt
new file mode 100644
index 0000000000..dc021a2efc
--- /dev/null
+++ b/Zend/tests/bug48912.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Bug #48912 (Namespace causes unexpected strict behaviour with extract())
+--FILE--
+<?php
+namespace A;
+
+function test()
+{
+ extract(func_get_arg(0));
+}
+
+test(array('x' => 1));
+echo "ok\n";
+?>
+--EXPECT--
+ok