xref: /llvm-project/lldb/test/API/lang/cpp/template-function/main.cpp (revision fdea9a4ec9b0d9585b8fe8a612686d9f44f40ddc)
1 template<typename T>
2 int foo(T t1) {
3         return int(t1);
4 }
5 
6 int main() {
7         return foo(42);
8 }
9