summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/checkers/Inputs/unused-using-decls.h
blob: 8245cb19feb02104d0893d84d9dca3d9de9c41cc (plain)
1
2
3
4
5
6
7
8
9
10
11
class MyClass {
public:
  template <template <typename> class S, typename T>
  S<T> *func1(T *a) {
    return new S<T>();
  }
  template <typename T, T (*S)()>
  void func2(T a) {
    S();
  }
};
OpenPOWER on IntegriCloud