www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 11170] New: nested function cannot be accessed from

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

           Summary: nested function cannot be accessed from
           Product: D
           Version: D2
          Platform: x86_64
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: pycerl qq.com



mixin template test()
{
    int next;
}

void foo(alias l)()
{
    l.next = 0;
}

void bar(alias l, alias t)()
{
    l.next = 0;
}

void main()
{
    struct A
    {
        int next;
    }

    A a;

    mixin test l1;
    mixin test l2;

    foo!(a);//Okay
    foo!(l1);//Error
    bar!(l1,a);//Okay
    bar!(l1,l2);//Error
}

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