annotate test/globals1.d @ 58:2c3cd3596187 trunk

[svn r62] Added support for TypeInfo _Array, _Function, _Pointer, _Delegate, _Enum Added initial support for CatExp aka 'a ~ b' Fixed global constant static arrays initialized with string literals Fixed casting any dynamic array to void* Fixed new expression with temporary storage Fixed alias declarations in function scope Fixed relational comparisons of pointers
author lindquist
date Thu, 25 Oct 2007 09:02:55 +0200
parents 8d45266bbabe
children d9d5d59873d8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
1 module globals1;
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
2
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
3 char[] gstr = "hello world";
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
4
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
5 void main()
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
6 {
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
7 printf("%.*s\n", gstr.length, gstr.ptr);
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
8 char[] str = gstr;
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
9 printf("%.*s\n", str.length, str.ptr);
8d45266bbabe [svn r25] * Fixed a lot of problems with string literals
lindquist
parents:
diff changeset
10 }