annotate run/i/in_out_body_09_E.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 1e6afb94ce6d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
680
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
1 // $HeadURL$
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
2 // $Date$
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
3 // $Author$
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
4
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas-dloop@kuehne.cn>
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
6 // @date@ 2005-09-22
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 736
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5052
680
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
8
736
1e6afb94ce6d updated meta data for Torture
thomask
parents: 680
diff changeset
9 // __DSTRESS_TORTURE_BLOCK__ -release
1e6afb94ce6d updated meta data for Torture
thomask
parents: 680
diff changeset
10
680
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
11 module dstess.run.i.in_out_body_09_E;
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
12
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
13 alias int intX;
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
14
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
15 intX test(intX i)
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
16 body {
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
17 return i + 1;
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
18 }
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
19
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
20 int main(){
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
21 assert(test(1)==2);
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
22 return 0;
7242b6a90eb2 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
23 }