3 const bool flag = false;
\r
10 ++c; // should still show up in AST
\r
14 flag ? ++c : ++c; // both should still show up in AST
\r
20 ++c; // should still show up in AST
\r
23 ++c; // should still show up in AST
\r
28 for (int i = 0; i < 0; ++i)
\r
29 ++c; // should still show up in AST
\r
31 for (int i = 0; i < 10; ++i) {
\r
34 ++c; // should still show up in AST
\r
37 ++c; // should still show up in AST
\r
43 ++c; // should still show up in AST
\r
46 int foo() // not called, but should still show up in AST
\r
50 ++c; // should still show up in AST
\r
55 ++c; // should still show up in AST
\r