annotate test/bug11.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 8b0e809563df
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
40
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
1 module bug11;
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
2
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
3 struct S
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
4 {
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
5 int[4] arr;
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
6 }
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
7
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
8 S s=S([1,2,3,4]);
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
9
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
10 void main()
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
11 {
8b0e809563df [svn r44] Lots of bug fixes.
lindquist
parents:
diff changeset
12 }