xref: /llvm-project/llvm/test/tools/llvm-cov/gcov/Inputs/tmpl.cpp (revision 1c99f650a7ac90c80ffd4830e05cd3408e64f42c)
1 template <int N>
test()2 int test() { return N; }
3 
main()4 int main() { return test<1>() + test<2>(); }
5