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