4 lines
88 B
C++
4 lines
88 B
C++
template <int N>
|
|
int test() { return N; }
|
|
|
|
int main() { return test<1>() + test<2>(); }
|