brintos

brintos / llvm-project-archived public Read only

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