# HG changeset patch # User thomask # Date 1099028981 0 # Node ID 2ef833a82afe8dcb05a4003cc294a3f2ba14b9a9 # Parent f027da128dd8b5e9b2d27e28c702301afe3321ba Ben Hinkle / news://cis04mh9v@digitaldaemon.com / nttp://digitalmars.com/digitalmars.D.bugs:1904 diff -r f027da128dd8 -r 2ef833a82afe run/typeid_03.d --- /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 +// @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; +}