[..]
What do you suppose would happen if I wrote the following?
struct A
{
struct B {}
B b1;
B b2;
}
void main()
{
A a;
assert(&a.b1 == &a.b2);
}
[..]
What do you suppose would happen if I wrote the following?
struct A
{
struct B {}
B b1;
B b2;
}
void main()
{
A a;
assert(&a.b1 == &a.b2);
}