annotate run/r/real_26_D.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents ff56ed1fd9fd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
964
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
1 // $HeadURL$
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
2 // $Date$
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
3 // $Author$
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
4
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
5 // @author@ <clugdbug@yahoo.com.au>
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
6 // @date@ 2006-03-16
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 964
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6682
964
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
8
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
9 module dstress.run.r.real_26_D;
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
10
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
11 int main(){
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
12 const float f = real.max;
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
13 real r = 0.1;
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
14 r = f;
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
15
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
16 if(r != r.infinity){
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
17 assert(0);
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
18 }
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
19
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
20 return 0;
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
21 }
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
22
ff56ed1fd9fd <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
23