blob: 6f76412ee4f5bbee22f8d2c44553193b1a16d8ca [file] [log] [blame]
//selection: 9, 32, 9, 37
//name: j -> foo
package simple.out;
public class StaticGetter1 {
public static int foo() { return 17; }
void bar(int foo) {
int i= 3;
System.out.println(i + foo);
}
void use() {
bar(foo());
}
}