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
structstate
{
int A;
};
intfunc(void *ptr)
{
state *S = (state*)ptr; // dereferencing when doing a cast like this is fine and shows members of state
state *S = ((state*)ptr); // dereferencing when doing a cast wrapped with extra () fails to show members of state
S->
}```
The text was updated successfully, but these errors were encountered:
Minimal repro code below.
The text was updated successfully, but these errors were encountered: