brintos

brintos / llvm-project-archived public Read only

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