Files
ldc/test/staticvars.d
Tomas Lindquist Olsen c357c96471 [svn r30] * Fixed static function-local variables.
* Fixed CondExp - bool ? true : false
2007-10-04 10:57:26 +02:00

14 lines
136 B
D

module staticvars;
int func()
{
static int i;
return i++;
}
void main()
{
assert(func() == 0);
assert(func() == 1);
}