aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/target/dump/main.cpp
blob: 4db770ece5335fb42db3e6326c22b611245016c1 (plain)
1
2
3
4
5
6
7
struct DummyStruct {
  int i;
};

DummyStruct s;

int main() { return s.i; }