diff options
Diffstat (limited to 'clang/test/PCH/cxx-templates.cpp')
-rw-r--r-- | clang/test/PCH/cxx-templates.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/PCH/cxx-templates.cpp b/clang/test/PCH/cxx-templates.cpp index 58c4c177fd2..6da5a75cddd 100644 --- a/clang/test/PCH/cxx-templates.cpp +++ b/clang/test/PCH/cxx-templates.cpp @@ -85,3 +85,7 @@ namespace rdar13135282 { __mt_alloc<> mt = __mt_alloc<>(); } } + +void CallDependentSpecializedFunc(DependentSpecializedFuncClass<int> &x) { + DependentSpecializedFunc(x); +} |