Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect member resolution for classes with multiple non-empty bases #197

Open
werat opened this issue Sep 7, 2022 · 0 comments
Open

Comments

@werat
Copy link
Member

werat commented Sep 7, 2022

struct Base1 {
  int x;
  int y;
};

struct Base2 : Base1 {
};

struct Base3 {
  int z;
};

struct Foo : Base2, Base3 {
};

Foo foo;

Evaluating foo.z produces wrong result, likely because there's a bug somewhere in ParserContext::GetMemberInfo().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant