bolt/deps/llvm-18.1.8/lldb/test/API/commands/dwim-print/main.c
2025-02-14 19:21:04 +01:00

10 lines
140 B
C

struct Structure {
int number;
};
int main(int argc, char **argv) {
struct Structure s;
s.number = 30;
// break here
return 0;
}