[Issue 5754] 'glue.c' assertion failure with map(filter)

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Mar 19 14:01:47 PDT 2011


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


kennytm at gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         OS/Version|Windows                     |All


--- Comment #2 from kennytm at gmail.com 2011-03-19 13:58:32 PDT ---
Reduced test case (I think):

----------------------------------


void x(alias pred)() {
    pred();
}

void main() {
    x!((){
        int i;  // declare in outer scope
        x!((){
            cast(void) i;   // access in inner scope
        });
    });
}

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


More information about the Digitalmars-d-bugs mailing list