Files
clang-p2996/lldb/test/API/lang/cpp/std-function-recognizer/main.cpp

11 lines
180 B
C++

#include <functional>
int foo(int x, int y) {
return x * y; // break here
}
int main(int argc, char *argv[]) {
std::function<int(int, int)> fn = foo;
return fn(argc, 1);
}