Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
tools
/
lldb-dap
/
exception
/
cpp
/
main.cpp
blob: 39d89b95319a8cd09b467cdd265cb1451672027b [
file
] [
log
] [
blame
]
#include
<stdexcept>
int
main
(
int
argc
,
char
const
*
argv
[])
{
throw
std
::
invalid_argument
(
"throwing exception for testing"
);
return
0
;
}