digitalmars.D.bugs - [Issue 352] New: Assertion failure: expression.c 753 - concatenating strings in a template calling another template
- d-bugmail puremagic.com (27/27) Sep 16 2006 http://d.puremagic.com/issues/show_bug.cgi?id=352
- Thomas Kuehne (23/35) Sep 20 2006 -----BEGIN PGP SIGNED MESSAGE-----
- d-bugmail puremagic.com (9/9) Nov 25 2006 http://d.puremagic.com/issues/show_bug.cgi?id=352
http://d.puremagic.com/issues/show_bug.cgi?id=352
Summary: Assertion failure: expression.c 753 - concatenating
strings in a template calling another template
Product: D
Version: 0.166
Platform: PC
OS/Version: Windows
Status: NEW
Keywords: ice-on-valid-code
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla digitalmars.com
ReportedBy: smjg iname.com
----------
template Qwert(char[] yuiop) {
const char[] Qwert = yuiop;
}
template Asdfg(char[] yuiop) {
const char[] Asdfg = Qwert!(yuiop ~ "hjkl");
}
char[] zxcvb = Asdfg!(null);
----------
Assertion failure: '0' on line 753 in file 'expression.c'
----------
after which DMD hangs.
--
Sep 16 2006
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 d-bugmail puremagic.com schrieb am 2006-09-16:http://d.puremagic.com/issues/show_bug.cgi?id=352template Qwert(char[] yuiop) { const char[] Qwert = yuiop; } template Asdfg(char[] yuiop) { const char[] Asdfg = Qwert!(yuiop ~ "hjkl"); } char[] zxcvb = Asdfg!(null); ---------- Assertion failure: '0' on line 753 in file 'expression.c' ---------- after which DMD hangs.message under Linux: Expression::toMangleBuffer(OutBuffer*): Assertion `0' failed. Added to DStress as http://dstress.kuehne.cn/compile/o/opCat_23_A.d http://dstress.kuehne.cn/compile/o/opCat_23_B.d http://dstress.kuehne.cn/compile/o/opCat_23_C.d http://dstress.kuehne.cn/compile/o/opCat_23_D.d http://dstress.kuehne.cn/compile/o/opCat_23_E.d http://dstress.kuehne.cn/compile/o/opCat_23_F.d Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFFEZX5LK5blCcjpWoRAtWbAKCm0y2vbfTBRqlUMIKwZ0Se4CWX/wCdEDOR B7vQA6OcJF5G/nMB35yCniU= =reHh -----END PGP SIGNATURE-----
Sep 20 2006
http://d.puremagic.com/issues/show_bug.cgi?id=352
bugzilla digitalmars.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Fixed DMD 0.175
--
Nov 25 2006









Thomas Kuehne <thomas-dloop kuehne.cn> 