* config/bfin/bfin.c (effective_address_32bit_p): Return true for
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / bprob / g++-bprob-2.C
blob23577d47e0ada5291675f3d9465e114433b7b209
1 namespace {
3 int calc(int j)
5   if (j==0) return 0;
6   return calc(j-1)*j % 17;
11 int main(void)
13   return calc(25);