bolt/deps/llvm-18.1.8/lldb/test/Shell/Watchpoint/Inputs/main.cpp
2025-02-14 19:21:04 +01:00

13 lines
212 B
C++

#include <stdio.h>
int main (int argc, char const *argv[])
{
struct {
int a;
int b;
int c;
} MyAggregateDataType;
printf ("Set break point at this line.\n");
return 0;
}