bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/diagnostics/main.cpp

12 lines
112 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
void foo(int x) {}
struct FooBar {
int i;
};
int main() {
FooBar f;
foo(1);
return 0; // Break here
}