www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 11049] New: RangeError does not recognize file name modified by #line directive

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=11049

           Summary: RangeError does not recognize file name modified by
                    #line directive
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: wrong-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: k.hara.pg gmail.com



This test case cannot pass assertions.

void main()
{
    int[] arr = [1,2,3];

#line 100 "foo"
    try { auto n = arr[3]; }
    catch (Error e)
    {
        assert(e.file == "foo");  // fails
        assert(e.line == 100);
    }

#line 200 "bar"
    try { auto a = arr[3..9]; }
    catch (Error e)
    {
        assert(e.file == "bar");  // fails
        assert(e.line == 200);
    }
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 15 2013
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=11049


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull



https://github.com/D-Programming-Language/dmd/pull/2561

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 15 2013