brintos

brintos / llvm-project-archived public Read only

0
0
Text · 145 B · 1363698 Raw
7 lines · cpp
1#include <utility>2 3int main(int argc, char **argv) {4  std::pair<int, int> pair_int(1234, 5678);5  return 0; // Set break point at this line.6}7