1 template <typename T
> struct Test
{
3 void doIt(int N
) { // CHECK: [[@LINE]]| 2| void doIt
4 if (N
> 10) { // CHECK: [[@LINE]]| 2| if (N > 10) {
5 M
+= 2; // CHECK: [[@LINE]]| 1| M += 2;
6 } else // CHECK: [[@LINE]]| 1| } else
7 M
-= 2; // CHECK: [[@LINE]]| 1| M -= 2;
13 extern template struct Test
<int>;
16 template struct Test
<int>;