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