annotate run/b/bug_expression_525_B.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 7b2c5a101190
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
856
7b2c5a101190 meta data maintenance
thomask
parents: 772
diff changeset
1 // $HeadURL$
7b2c5a101190 meta data maintenance
thomask
parents: 772
diff changeset
2 // $Date$
7b2c5a101190 meta data maintenance
thomask
parents: 772
diff changeset
3 // $Author$
772
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
4
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
5 // @author@ Don Clugston <dac@nospam.com.au>
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
6 // @date@ 2005-12-06
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 856
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5772
772
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
8
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
9 module dstress.run.b.bug_expression_525_B;
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
10
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
11 template t(char[] arg){
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
12 const char [] t = "hello";
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
13 }
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
14
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
15 const char [] s = t!("a");
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
16
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
17 int main(){
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
18 if(s == "hello"){
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
19 return 0;
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
20 }
98e71577fcc1 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
21 }