annotate run/o/opCatAssign_19_F.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents 825b27e25a95
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
982
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
1 // $HeadURL$
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
2 // $Date$
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
3 // $Author$
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
4
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
5 // @author@ <lio@lunesu.com>
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
6 // @date@ 2006-04-20
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 982
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=111
982
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
8
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
9 module dstress.run.o.opCatAssign_19_F;
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
10
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
11 int main(){
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
12 char[] a = "\U00091234";
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
13 char[] b;
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
14
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
15 b ~= "\U00091234";
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
16
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
17 if(a != b){
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
18 assert(0);
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
19 }
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
20
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
21 return 0;
825b27e25a95 <lio@lunesu.com>
thomask
parents:
diff changeset
22 }