brintos

brintos / llvm-project-archived public Read only

0
0
Text · 138 B · 9554401 Raw
7 lines · cpp
1#include <vector>2 3int main(int argc, char **argv) {4  std::vector<bool> a = {0, 1, 0, 1};5  return 0; // Set break point at this line.6}7