This relands commit `71f3cac7895ad516ec25438f803ed3c9916c215a` Fixes LLDB Linux bots and improves TypeSystem flushing for shared libraries. Differential Revision: https://reviews.llvm.org/D138724
13 lines
137 B
C++
13 lines
137 B
C++
struct Base {
|
|
int m_base_val = 42;
|
|
};
|
|
|
|
struct Foo : public Base {
|
|
int m_derived_val = 137;
|
|
};
|
|
|
|
int main() {
|
|
Foo foo;
|
|
return 0;
|
|
}
|