diff lphobos/typeinfos.d @ 53:06ccc817acd4 trunk

[svn r57] Added most basic TypeInfo (rebuild lphobos). Fixed some SymOffExp bugs. Added another typeinfo test case.
author lindquist
date Tue, 23 Oct 2007 07:16:02 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lphobos/typeinfos.d	Tue Oct 23 07:16:02 2007 +0200
@@ -0,0 +1,20 @@
+module typeinfos;
+
+import
+typeinfo.ti_byte,
+typeinfo.ti_char,
+typeinfo.ti_delegate,
+typeinfo.ti_dchar,
+typeinfo.ti_double,
+typeinfo.ti_float,
+typeinfo.ti_int,
+typeinfo.ti_long,
+typeinfo.ti_ptr,
+typeinfo.ti_real,
+typeinfo.ti_short,
+typeinfo.ti_ubyte,
+typeinfo.ti_uint,
+typeinfo.ti_ulong,
+typeinfo.ti_ushort,
+typeinfo.ti_void,
+typeinfo.ti_wchar;