mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
Fixed a bunch of bugs with return/break/continue in loops. Fixed support for the DMDFE hidden implicit return value variable. This can be needed for some foreach statements where the loop body is converted to a nested delegate, but also possibly returns from the function. Added std.math to phobos. Added AA runtime support code, done ground work for implementing AAs. Several other bugfixes.
9 lines
80 B
D
9 lines
80 B
D
module bug72;
|
|
|
|
void main()
|
|
{
|
|
char c = void;
|
|
int i = void;
|
|
c += i;
|
|
}
|