summaryrefslogtreecommitdiffstats
path: root/lldb/test/Shell/SymbolFile/PDB/Inputs/VBases.cpp
blob: a5e84bd36571bf4e097a7c9d505fc3acd2757dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}
OpenPOWER on IntegriCloud