annotate run/typeid_13.d @ 129:97952bc2ca81

extended typeid tests
author thomask
date Sun, 14 Nov 2004 18:17:36 +0000
parents
children c1ca2f37362b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
129
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
1 /* $HeadURL$
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
2 * $Date$
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
3 * $Author$
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
4 */
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
5
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
6 module dstress.run.typeid_13;
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
7
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
8 int main(){
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
9 TypeInfo ti = typeid(void);
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
10 assert(!(ti is null));
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
11 return 0;
97952bc2ca81 extended typeid tests
thomask
parents:
diff changeset
12 }