Files
clang-p2996/lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/main.cpp
2024-08-23 11:06:01 -07:00

14 lines
177 B
C++

#include <functional>
#include <iostream>
void greet() {
// BREAK HERE
std::cout << "Hello\n";
}
int main() {
std::function<void()> func{greet};
func();
return 0;
}