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
structS
{
int a : 3;
int b : 3;
}
voidtest()
{
S s = S(1, 2); // Error: overlapping initialization for `b`
S s = S(a:1, b:2); // Error: overlapping initialization for `b
}
This behaviour is not seen when compiling C code via importc.