File indexing completed on 2024-05-26 04:42:32

0001 /// "useCount" : 1, "useRanges" : "[(21, 4), (21, 4)]"
0002 static int counter = 0; /// FIX_ME: There should be two uses. This seems to be a problem in the JSON test suite
0003 
0004 #define INC(i) counter += i; counter += 4;
0005 
0006 /// "useCount" : 1, "useRanges" : "[(21, 8), (21, 9)]"
0007 int i = 0;
0008 
0009 #define Q_DECL_CONSTEXPR constexpr
0010 
0011 class Cursor
0012 {
0013 public:
0014     /// "useCount" : 1, "useRanges" : "[(24, 6), (24, 12)]"
0015     Q_DECL_CONSTEXPR int column() const {
0016         return 123;
0017     }
0018 };
0019 
0020 int main()
0021 {
0022     INC(i);
0023 
0024     Cursor c;
0025     c.column();
0026 }