annotate run/o/opCat_18_C.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 3b547ab9ee53
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
786
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
1 // $HeadURL$
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
2 // $Date$
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
3 // $Author$
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
4
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
5 // @author@ Don Clugston <dac@nospam.com.au>
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
6 // @date@ 2005-12-30
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 795
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5924
786
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
8
795
3b547ab9ee53 fixed typos
thomask
parents: 786
diff changeset
9 module dstress.run.o.opCat_18_C;
786
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
10
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
11 class Dog(char[] duck){
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
12 const int dog = 2;
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
13 }
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
14
795
3b547ab9ee53 fixed typos
thomask
parents: 786
diff changeset
15 const int aardvark = Dog!("cat" ~ "cat").dog;
786
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
16
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
17 int main(){
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
18 if(aardvark == 2){
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
19 return 0;
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
20 }
713c177da257 Don Clugston <dac@nospam.com.au>
thomask
parents:
diff changeset
21 }