typedef struct { int x, y; } S;

int main()
{
    S a = {1}, b = {2}, c = {3};
    S arr1[] = {a};     // ok
    S arr2[] = {a, b};  // tcc_bug.c:8: error: internal compiler error
                        // tccgen.c:7754: in init_assert(): initializer overflow
}

Sendt fra E-post<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10

_______________________________________________
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to