| commit | f796cf1ade21431ecef2b621cda79d22f4358355 | [log] [tgz] |
|---|---|---|
| author | Eli Friedman <eli.friedman@gmail.com> | Wed Jun 19 01:38:21 2013 +0000 |
| committer | Eli Friedman <eli.friedman@gmail.com> | Wed Jun 19 01:38:21 2013 +0000 |
| tree | 705618d61037d80ff4b839ed4c6b934841d646f1 | |
| parent | 88e0f618ea6fe15c633d99772d22cace838e3e28 [diff] [blame] |
Add test coverage for serialization of dependent function template specializations. llvm-svn: 184275
diff --git a/clang/test/PCH/cxx-templates.cpp b/clang/test/PCH/cxx-templates.cpp index 58c4c17..6da5a75 100644 --- a/clang/test/PCH/cxx-templates.cpp +++ b/clang/test/PCH/cxx-templates.cpp
@@ -85,3 +85,7 @@ __mt_alloc<> mt = __mt_alloc<>(); } } + +void CallDependentSpecializedFunc(DependentSpecializedFuncClass<int> &x) { + DependentSpecializedFunc(x); +}