diff run/typeid_34.d @ 133:f4e9069c7993

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