mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
Lots of bugfixes. Added support for special foreach on strings. Added std.array, std.utf, std.ctype and std.uni to phobos. Changed all the .c files in the gen dir to .cpp (it *is* C++ after all)
17 lines
179 B
D
17 lines
179 B
D
module bug49;
|
|
|
|
pragma(LLVM_internal, "notypeinfo")
|
|
struct S
|
|
{
|
|
int i;
|
|
long l;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s;
|
|
s.i = 0x__FFFF_FF00;
|
|
s.l = 0xFF00FF_FF00;
|
|
s.i &= s.l;
|
|
}
|