mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
14 lines
136 B
D
14 lines
136 B
D
module staticvars;
|
|
|
|
int func()
|
|
{
|
|
static int i;
|
|
return i++;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
assert(func() == 0);
|
|
assert(func() == 1);
|
|
}
|