Files
2021-04-30 13:59:45 +00:00

13 lines
146 B
Java

public class Test {
int y = 55;
void foo<caret>(int x){
System.out.println(x + y);
}
void test(){
foo(42);
}
}