annotate compile/o/opCat_25_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 98f3c6ec25d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1241
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
1 // $HeadURL$
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
2 // $Date$
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
3 // $Author$
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
4
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
5 // @author@ Nazo Humei <lovesyao@hotmail.com>
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
6 // @date@ 2006-11-25
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1241
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=595
1241
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
8 // @desc@ [Issue 595] New: can't append to array/arrayliteral statically
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
9
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
10 module dstress.compile.o.opCat_25_A;
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
11
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
12 const char[] a = null;
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
13 const char[] b = a ~ 'd';
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
14
98f3c6ec25d8 [Issue 595] New: can't append to array/arrayliteral statically
thomask
parents:
diff changeset
15 static assert(b == "d");