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