[Clang] Prevent `mlink-builtin-bitcode` from internalizing the RPC client (#118661)
[llvm-project.git] / lldb / test / API / commands / expression / function_template_specialization_temp_args / main.cpp
blob6d01288259afe51148da2368ea1b735d2714ea1a
1 template <typename T> struct M {};
3 template <typename T> void f(T &t);
5 template <> void f<int>(int &t) {
6 typedef M<int> VType;
8 VType p0; // break here
11 int main() {
12 int x;
14 f(x);
16 return 0;