blob: c47036b9aa0a7cbf95594e190390c41729692bad [file] [log] [blame]
#include "foo.h"
template <typename T> struct bar {
T a;
};
int main() {
bar<int> b{47};
foo(&b);
return 0;
}