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
struct Foo {
int a,b;
};
void foo(struct Foo* f) {
//struct Foo f = {.a = 1};
foo(&(struct Foo){.a=1});
/* Sometimes " a compound literal of type "struct Foo" is not allowed" is shown */
}