class TestClass {
int m_x;
#ifdef FLAG // This ifdef keyword is highlighted
int m_variable_used_when_flag_enabled;
#endif
TestClass(int x) : m_x(x)
#ifdef FLAG // This ifdef keyword is NOT highlighted
,m_variable_used_when_flag_enabled()
#endif
{
}
};