1 template <int N> test()2 int test() { return N; } 3 main()4 int main() { return test<1>() + test<2>(); } 5