You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Array initialization with a non-array is expected to fail
In the past, this failed an internal assertion; nowadays a proper error is
reported to the user. clang -Wall -Werror says:
Struct_Initialization1/main.c:9:38: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces]
struct _classinfo nullclass1 = { 42, 0, 0 };
^~~~
{ }
1 error generated.
0 commit comments