March 02, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1014

           Summary: Error with character literal escaping when generating
                    header with -H
           Product: D
           Version: 1.007
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: blocker
          Priority: P1
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: digitalmars-com@baysmith.com


The character literal '\'' is inproperly converted to '''. Example follows.

----- tmp.d -----
static char[] charArray = [ '\"', '\'' ];

> dmd -c -H tmp.d

----- tmp.di -----
// D import file generated from 'tmp.d'
static
{
    char[] charArray = ['"','''];
}


-- 

March 19, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1014


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2007-03-19 17:38 -------
Fixed DMD 1.009


--