comparison lphobos/typeinfos1.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
children b86e00b938a5
comparison
equal deleted inserted replaced
57:a9d29e9f1fed 58:2c3cd3596187
1 module typeinfos1;
2
3 import
4 typeinfo1.ti_byte,
5 typeinfo1.ti_char,
6 typeinfo1.ti_delegate,
7 typeinfo1.ti_dchar,
8 typeinfo1.ti_double,
9 typeinfo1.ti_float,
10 typeinfo1.ti_int,
11 typeinfo1.ti_long,
12 typeinfo1.ti_ptr,
13 typeinfo1.ti_real,
14 typeinfo1.ti_short,
15 typeinfo1.ti_ubyte,
16 typeinfo1.ti_uint,
17 typeinfo1.ti_ulong,
18 typeinfo1.ti_ushort,
19 typeinfo1.ti_void,
20 typeinfo1.ti_wchar;