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