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