changeset 930:c7e141bc2fba

<ericanderton@yahoo.com> 2006-03-22 news:bug-60-3@http.d.puremagic.com/bugzilla/
author thomask
date Fri, 24 Mar 2006 14:25:03 +0000
parents 0374233d36be
children 47ef91337f5f
files run/t/typeid_89.d
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_89.d	Fri Mar 24 14:25:03 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<ericanderton@yahoo.com>
+// @date@	2006-03-22
+// @uri@	news:bug-60-3@http.d.puremagic.com/bugzilla/
+
+module dstress.run.t.typeid_89;
+
+int main(){
+	Typeid t = typeid(bit);
+
+	assert(t !== null);
+
+	return 0;
+}