blob: 620cb668ac19ae964dab8967d734e27f8341fa49 [file] [log] [blame]
package p;
class A{
int m(int i){
int x= i + 1;
return x * x + m(m(x));
}
}