File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / lang / bug17115.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 7 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Bug #17115 (lambda functions produce segfault with static vars)
--FILE--
<?php
$func = create_function('','
	static $foo = 0;
	return $foo++;
');
var_dump($func());
var_dump($func());
var_dump($func());
?>
--EXPECT--
int(0)
int(1)
int(2)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>