brintos

brintos / llvm-project-archived public Read only

0
0
Text · 122 B · c47036b Raw
14 lines · cpp
1#include "foo.h"2 3template <typename T> struct bar {4  T a;5};6 7int main() {8  bar<int> b{47};9 10  foo(&b);11 12  return 0;13}14