Files
ldc/test/pt.d
Tomas Lindquist Olsen 964f91b5a1 [svn r291] Fixed a bunch of the old Phobos tests to work with Tango.
Branch statements now emit a new block after it.
Fixed the _adSort runtime function had a bad signature.
Added a missing dot prefix on compiler generated string tables for string switch.
Fixed, PTRSIZE seems like it was wrong on 64bit, now it definitely gets set properly.
2008-06-16 16:01:19 +02:00

31 lines
447 B
D

extern(C) int printf(char*, ...);
int main()
{
char[16] s = void;
{
char[] sd = s;
{
s[0] = 'a';
s[1] = 'b';
s[2] = 'c';
}
printf("%p %p\n", s.ptr, sd.ptr);
printf("%c%c%c\n", s[0], s[1], s[2]);
}
char[16] s1 = void;
char[16] s2 = void;
char[] d1 = s1;
{
printf("%p\n%p\n%p\n", s1.ptr, s2.ptr, d1.ptr);
}
int[16] arr;
return 0;
}