[Issue 2845] New: Alias-to-local as template argument + delegate = Access Violation

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Apr 16 23:08:55 PDT 2009


http://d.puremagic.com/issues/show_bug.cgi?id=2845

           Summary: Alias-to-local as template argument + delegate = Access
                    Violation
           Product: D
           Version: 2.027
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: kinaba at is.s.u-tokyo.ac.jp


Here is the minimal code I can reproduce the problem on DMD 2.028 on Windows
Vista:

struct dep_t(alias a)
{
        int  memvar;
        void memfun() {}
}

dep_t!(a) dep(alias a)()
{
        return dep_t!(a)();
}

void dep_and_del(D)(D a, void delegate() b) { /*nothing*/ }

void main()
{
        int x = 0;
        dep_and_del( dep!(x), {}     );
        dep_and_del( dep!(x), {x=1;} ); // object.Error: Access Violation
}


-- 



More information about the Digitalmars-d-bugs mailing list