Richard Trieu | 7197570 | 2018-01-06 03:20:59 +0000 | [diff] [blame] | 1 | #ifndef Class |
2 | #define Class | ||||
3 | template <class T> | ||||
4 | class S { | ||||
5 | int Field; | ||||
6 | void run() { | ||||
7 | int x; | ||||
8 | A::Check(&Field, 1); | ||||
Richard Trieu | d867390 | 2018-09-14 01:15:28 +0000 | [diff] [blame] | 9 | A::Check(&Field, 1); |
Richard Trieu | 7197570 | 2018-01-06 03:20:59 +0000 | [diff] [blame] | 10 | } |
11 | }; | ||||
12 | #endif |