mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
14 lines
115 B
D
14 lines
115 B
D
module bug4;
|
|
|
|
int func(int i)
|
|
{
|
|
i += 2;
|
|
i -= 3;
|
|
return i;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
assert(func(4) == 3);
|
|
}
|