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