[OpenACC] Implement 'collapse' for combined constructs.
[llvm-project.git] / clang-tools-extra / test / clang-move / Inputs / template_class_test.cpp
blob8ad2dcb1eda868a5d34c7f5c12a02534a002ed22
1 #include "template_class_test.h"
3 template <typename T>
4 void A<T>::g() {}
6 template <typename T>
7 template <typename U>
8 void A<T>::k() {}
10 template <typename T>
11 int A<T>::c = 2;
13 void B::f() {}