brintos

brintos / llvm-project-archived public Read only

0
0
Text · 88 B · 287b541 Raw
5 lines · cpp
1template <int N>2int test() { return N; }3 4int main() { return test<1>() + test<2>(); }5