annotate run/a/auto_10_A.d @ 756:9a121126b077

major "Torture" review
author thomask
date Sat, 03 Dec 2005 22:19:07 +0000
parents 9a2158064fdd
children 7e8e5013a030
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;
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
9
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
10 assert(typeid(typeof(x)).toString() == "double");
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
11
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
12 return 0;
9a121126b077 major "Torture" review
thomask
parents: 723
diff changeset
13 }