www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 5304] New: Cannot access __dollar in pure function

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

           Summary: Cannot access __dollar in pure function
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bearophile_hugs eml.cc



pure void foo(T...)(T args) {
    auto x = args[1 .. $];
}
void main() {
    foo(1, 2);
}


DMD 2.050 shows:
test.d(2): Error: pure function 'foo' cannot access mutable static data
'__dollar'
test.d(5): Error: template instance test.foo!(int,int) error instantiating

If I remove "pure" the error vanishes.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 01 2010
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=5304


kennytm gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
           Platform|x86                         |All
         Resolution|                            |WORKSFORME



Apparently fixed.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Feb 26 2012