1 
2 
validCode(int argInt)3 void validCode(int argInt)
4 {
5     // if G_UNLIKELY is not defined this results in a syntax error
6     if G_UNLIKELY(argInt == 1) {} else if (G_UNLIKELY(argInt == 2)) {}
7 }
8 
9