Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
146 B
C++
Raw Permalink Normal View History

struct A {
char a = 1;
};
struct B {
int b = 2;
};
struct C : virtual A, virtual B {
short c = 3;
};
int main() {
C c{};
return 0;
}