1int temp(const char *temp);
2
3template <int> int g() { return temp("Hi"); }
4int g1() { return temp("Hi"); }
5