https://issues.dlang.org/show_bug.cgi?id=24118

RazvanN <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|backend, ice                |
                 CC|                            |[email protected]
           Hardware|All                         |Other
                 OS|All                         |Mac OS X

--- Comment #3 from RazvanN <[email protected]> ---
Reduced code:

void map(alias fun, T)(T[] arr)
{
    fun(arr);
}


void foo() {
    if( __ctfe )                                                                
    {   
        ["a", "b", "c"].map!( a => " " ~ a[0] );
    }   
}

--

Reply via email to