Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
commands
/
expression
/
import-std-module
/
vector-bool
/
main.cpp
blob: 9554401cf5085c7647a4c0ef4c5db851df20b7ee [
file
] [
log
] [
blame
]
#include
<vector>
int
main
(
int
argc
,
char
**
argv
)
{
std
::
vector
<bool>
a
=
{
0
,
1
,
0
,
1
};
return
0
;
// Set break point at this line.
}