diff options
Diffstat (limited to 'Zend/tests/bug38808.phpt')
-rwxr-xr-x | Zend/tests/bug38808.phpt | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Zend/tests/bug38808.phpt b/Zend/tests/bug38808.phpt deleted file mode 100755 index 0fc4bfecdc..0000000000 --- a/Zend/tests/bug38808.phpt +++ /dev/null @@ -1,17 +0,0 @@ ---TEST-- -Bug #38808 ("maybe ref" issue for current() and others) ---FILE-- -<?php -$current = "current"; -$next = "next"; - -$b = array(1=>'one', 2=>'two'); -$a =& $b; - -echo $current($a)."\n"; -$next($a); -echo $current($a)."\n"; -?> ---EXPECT-- -one -two
\ No newline at end of file |