summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/Inputs/cxx-templates-c.h
blob: 4c0fc8a4a825740ac3980440017bdbccf65335b5 (plain)
1
2
3
4
5
6
7
template<typename> struct MergeSpecializations;
template<typename T> struct MergeSpecializations<T[]> {
  typedef int partially_specialized_in_c;
};
template<> struct MergeSpecializations<bool> {
  typedef int explicitly_specialized_in_c;
};
OpenPOWER on IntegriCloud