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