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
module module_A;
struct A {
int x;
int y;
}
void function(out A a) {
a.x = 4; // No info on the contents of struct A are provided when writing 'a.'
a.y = 2;
}
A b; // Info on the contents of struct A are provided when writing 'b.'
Removing module module_A; from the top of the file is required to see info on the contents of struct A within a scope.