summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/thread/finish-from-empty-func/main.c
blob: b3f90db5e2562980c364af262ffde8cb0b160907 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
void done() {}
int main() {
  puts("in main");
  done(); // Set breakpoint here
  done();
  puts("leaving main");
  return 0;
}