mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-18 20:53:14 +01:00
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
21 lines
362 B
D
21 lines
362 B
D
module typeinfos1;
|
|
|
|
import
|
|
typeinfo1.ti_byte,
|
|
typeinfo1.ti_char,
|
|
typeinfo1.ti_delegate,
|
|
typeinfo1.ti_dchar,
|
|
typeinfo1.ti_double,
|
|
typeinfo1.ti_float,
|
|
typeinfo1.ti_int,
|
|
typeinfo1.ti_long,
|
|
typeinfo1.ti_ptr,
|
|
typeinfo1.ti_real,
|
|
typeinfo1.ti_short,
|
|
typeinfo1.ti_ubyte,
|
|
typeinfo1.ti_uint,
|
|
typeinfo1.ti_ulong,
|
|
typeinfo1.ti_ushort,
|
|
typeinfo1.ti_void,
|
|
typeinfo1.ti_wchar;
|