annotate tests/mini/compile_ctfe_dup.d @ 1640:9bf06e02070b

Merge DMD 1.057.
author Christian Kamm <kamm incasoftware de>
date Mon, 08 Mar 2010 21:39:20 +0100
parents de7fad0ad243
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1332
de7fad0ad243 Added testcase for #288 .
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents:
diff changeset
1 char[] foobar() {
de7fad0ad243 Added testcase for #288 .
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents:
diff changeset
2 return "foobar".dup;
de7fad0ad243 Added testcase for #288 .
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents:
diff changeset
3 }
de7fad0ad243 Added testcase for #288 .
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents:
diff changeset
4 const char[] foo = foobar();