Sign in
rust
/
rust-lang
/
llvm-project
/
refs/heads/rustc/17.0-2023-09-19
/
.
/
lldb
/
test
/
Shell
/
Driver
/
Inputs
/
CommandOnCrashMultiThreaded.cpp
blob: f469d82fbbef9decb97885cb7cfcbced74eabd3e [
file
] [
log
] [
blame
] [
edit
]
#include
<thread>
void
t_func
()
{
asm
volatile
(
"int3\n\t"
);
}
int
main
()
{
std
::
thread t
(
t_func
);
t
.
join
();
return
0
;
}