Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
tools
/
lldb-dap
/
stackTrace
/
subtleFrames
/
main.cpp
blob: 71944528441e3850a551ffc706b48f3bae289b8a [
file
] [
log
] [
blame
]
#include
<functional>
#include
<iostream>
void
greet
()
{
// BREAK HERE
std
::
cout
<<
"Hello\n"
;
}
int
main
()
{
std
::
function
<
void
()>
func
{
greet
};
func
();
return
0
;
}