blob: d0ebca58783cfea781e3a281a4e6e2c929f01771 [file] [log] [blame]
/**
* Created by IntelliJ IDEA.
* User: db
* Date: Nov 15, 2004
* Time: 5:40:02 PM
* To change this template use File | Settings | File Templates.
*/
public class Test {
int sum(int i, int j) {
return i + j;
}
int foo(int n, int k) {
int a;
a = sum(n, k);
return a;
}
}