simple.cpp 225 B

123456789101112131415161718
  1. auto f(auto cond1, auto cond2)
  2. {
  3. int a;
  4. int b;
  5. if (cond1) {
  6. a = 1;
  7. if (cond2) {
  8. b = a;
  9. } else {
  10. b = 3;
  11. }
  12. } else {
  13. b = 4;
  14. }
  15. return b;
  16. }