blob: b8302d3ec14ba11786d3eac14d0dfee0c1928e54 [file] [log] [blame]
//selection: 9, 32, 9, 37
//name: foo -> 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());
}
}