blob: 745a2ce954e8992a165c670159cd7611aa005ccd [file] [log] [blame] [edit]
struct Base {
int m_base_val = 42;
};
struct Foo : public Base {
int m_derived_val = 137;
};
int main() {
Foo foo;
return 0;
}