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

Nathan S. <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
           Hardware|x86_64                      |All
            Summary|betterC TypeInfo error when |betterC TypeInfo error when
                   |using slice copy on Structs |using slice copy or slice
                   |                            |assign on Structs
                 OS|Windows                     |All

--- Comment #1 from Nathan S. <[email protected]> ---
Also applies to slice assign with structs.

//flags: -betterC
extern(C):

struct S { int a; }

void main()
{
    S[10] array;
    S val;
    array[] = val;
}

--

Reply via email to