digitalmars.D.bugs - [Issue 2169] New: Can't concat non-char[] string literal and char literal
- d-bugmail puremagic.com (20/20) Jun 24 2008 http://d.puremagic.com/issues/show_bug.cgi?id=2169
- d-bugmail puremagic.com (10/10) Sep 07 2011 http://d.puremagic.com/issues/show_bug.cgi?id=2169
http://d.puremagic.com/issues/show_bug.cgi?id=2169
Summary: Can't concat non-char[] string literal and char literal
Product: D
Version: 1.031
Platform: PC
OS/Version: Windows
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla digitalmars.com
ReportedBy: jarrett.billingsley gmail.com
auto x = "foo"w ~ 'x';
auto y = "foo"d ~ 'x';
auto z = 'x' ~ "foo"w;
auto w = 'x' ~ "foo"d;
All four give an error about not being able to concat a w/dchar[] with an int
(int?!). Pretty amazing.
--
Jun 24 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2169
yebblies <yebblies gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dfj1esp02 sneakemail.com
*** Issue 3126 has been marked as a duplicate of this issue. ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 07 2011








d-bugmail puremagic.com