blob: bfd499ba0287ae650905978191c1fb61033e090a [file] [log] [blame]
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00001// Header for PCH test cxx-templates.cpp
2
3template <typename T>
4struct S {
5 T x;
6};
Argyrios Kyrtzidis69da4a82010-06-22 09:55:07 +00007
8template <typename T>
9T templ_f(T x) {
10 return x;
11}