namespace NAMESPACE {
static int g_value = 0;
void DoSomeStuff() {
  // A comment here
  g_value++; // The line with code
}

} // namespace NAMESPACE
