bolt/deps/llvm-18.1.8/lldb/test/API/commands/dwim-print/main.c

11 lines
140 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
struct Structure {
int number;
};
int main(int argc, char **argv) {
struct Structure s;
s.number = 30;
// break here
return 0;
}