changeset 79:2ef833a82afe

Ben Hinkle <bhinkle@mathworks.com> / news://cis04mh9v@digitaldaemon.com / nttp://digitalmars.com/digitalmars.D.bugs:1904
author thomask
date Fri, 29 Oct 2004 05:49:41 +0000
parents f027da128dd8
children 72fa445c2fbb
files run/typeid_03.d
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/typeid_03.d	Fri Oct 29 05:49:41 2004 +0000
@@ -0,0 +1,11 @@
+// @author@	Ben Hinkle <bhinkle@mathworks.com>
+// @date@	2004-09-22
+// @uri@	news://cis04m$2h9v$1@digitaldaemon.com
+// @url@	nttp://digitalmars.com/digitalmars.D.bugs:1904
+
+module dstress.run.typeid_03;
+
+int main() {
+	TypeInfo ti = typeid(int);
+	return 0;
+}