xref: /php-src/Zend/tests/bug48912.phpt (revision f8d79582)
1--TEST--
2Bug #48912 (Namespace causes unexpected strict behaviour with extract())
3--FILE--
4<?php
5namespace A;
6
7function test()
8{
9    extract(func_get_arg(0));
10}
11
12test(array('x' => 1));
13echo "ok\n";
14?>
15--EXPECT--
16ok
17