brintos

brintos / llvm-project-archived public Read only

0
0
Text · 137 B · 745a2ce Raw
13 lines · cpp
1struct Base {2  int m_base_val = 42;3};4 5struct Foo : public Base {6  int m_derived_val = 137;7};8 9int main() {10  Foo foo;11  return 0;12}13