diff run/typeid_13.d @ 129:97952bc2ca81

extended typeid tests
author thomask
date Sun, 14 Nov 2004 18:17:36 +0000
parents
children c1ca2f37362b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/typeid_13.d	Sun Nov 14 18:17:36 2004 +0000
@@ -0,0 +1,12 @@
+/* $HeadURL$
+ * $Date$
+ * $Author$
+ */
+
+module dstress.run.typeid_13;
+
+int main(){
+	TypeInfo ti = typeid(void);
+	assert(!(ti is null));
+	return 0;
+}