blob: 5842b8fa99e0ad7cfc515bb4c095107ca98d6ed3 [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 {
Integer sum(int i, int j) {
return i + j;
}
int foo(int n, int k) {
int a;
a = sum(n, k);
return a;
}
}