annotate run/a/auto_10_A.d @ 1089:03b5056496f1

pre DMD-0.163 review
author thomask
date Wed, 19 Jul 2006 21:00:13 +0000
parents 7e8e5013a030
children 36bedfa079e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
756
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
1 // $HeadURL$
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
2 // $Date$
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
3 // $Author$
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
4
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
5 module dstress.run.c.auto_10_A;
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
6
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
7 int main(){
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
8 auto x = 4.0;
1089
03b5056496f1 pre DMD-0.163 review
thomask
parents: 1086
diff changeset
9
1086
7e8e5013a030 gdc-0.19 review
thomask
parents: 756
diff changeset
10 if(typeid(typeof(x)).toString() != "double"){
7e8e5013a030 gdc-0.19 review
thomask
parents: 756
diff changeset
11 assert(0);
7e8e5013a030 gdc-0.19 review
thomask
parents: 756
diff changeset
12 }
1089
03b5056496f1 pre DMD-0.163 review
thomask
parents: 1086
diff changeset
13
756
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
14 return 0;
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
15 }