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

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9dcac8d4e97f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
590
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
1 // $HeadURL$
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
2 // $Date$
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
3 // $Author$
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
4
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
5 // @author@ Regan Heath <regan@netwin.co.nz>
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
6 // @date@ 2005-05-26
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 1091
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4153
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 1078
diff changeset
8 // @desc@ Internal error: e2ir.c 488 (char 00914B24) (0x811ad08)
590
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
9
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
10 module dstress.run.o.opCat_07_A;
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
11
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
12 void foo(char[] s){
1078
083f68b5b904 <webmaster@villagersonline.com>
thomask
parents: 590
diff changeset
13 if(s != "is this it? yep!"){
083f68b5b904 <webmaster@villagersonline.com>
thomask
parents: 590
diff changeset
14 assert(0);
083f68b5b904 <webmaster@villagersonline.com>
thomask
parents: 590
diff changeset
15 }
590
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
16 }
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
17
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
18 int main(){
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
19 char c = '?';
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
20 foo("is this it"~c~" yep!");
1078
083f68b5b904 <webmaster@villagersonline.com>
thomask
parents: 590
diff changeset
21
590
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
22 return 0;
95fa7f1ce1c9 reclasification
thomask
parents:
diff changeset
23 }