A1(const int & In,int & Out)1 void A1(const int &In, int &Out) {
2   if (In > 123) // NOLINT
3     Out = 123;
4 }
5 
6