summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/statistics/basic/dwo_error_foo.cpp
blob: 41618bdcee958406101592aa1de71d3fea69830f (plain)
1
2
3
4
5
6
7
8
9
10
struct foo {
  int x;
  bool y;
};

void dwo_error_foo() {
  foo f;
  f.x = 1;
  f.y = true;
}