github.com/sercand/please@v13.4.0+incompatible/test/cc_rules/clang/modules/f1.cc (about)

     1  import q1;
     2  module f1;
     3  
     4  int f(int n) {
     5    if (n == 0) {
     6      return 1;
     7    }
     8    return 1+q(n-1);
     9  }