annotate nocompile/t/template_17_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 283709990093
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
722
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
1 // $HeadURL$
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
2 // $Date$
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
3 // $Author$
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
4
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
5 // @author@ Don Clugston <dac@nospam.com.au>
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
6 // @date@ 2005-10-27
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 722
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5229
722
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
8
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
9 module dstress.nocompile.t.template_17_A;
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
10
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
11 template t(int i){
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
12 const int x = t!(i+1).x;
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
13 }
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
14
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
15 void main(){
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
16 int i = t!(0).x;
283709990093 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
17 }