annotate run/typeid_34.d @ 133:f4e9069c7993

extended typeid/TypeInfo tests
author thomask
date Mon, 15 Nov 2004 05:40:21 +0000
parents
children c1ca2f37362b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
133
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
1 /* $HeadURL$
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
2 * $Date$
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
3 * $Author$
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
4 */
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
5
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
6 module dstress.run.typeid_34;
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
7
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
8 int main(){
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
9 TypeInfo ti = typeid(uint);
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
10 assert(!(ti is null));
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
11 return 0;
f4e9069c7993 extended typeid/TypeInfo tests
thomask
parents:
diff changeset
12 }