xref: /llvm-project/lldb/test/API/commands/target/dump/main.cpp (revision 9a57d1e52680ac05c29d6d0d2cfbaf3b05a5cbce)
1 struct DummyStruct {
2   int i;
3 };
4 
5 DummyStruct s;
6 
main()7 int main() { return s.i; }
8