Files
2021-02-17 16:10:47 +00:00

10 lines
106 B
Java

public class Test {
void test(){
foo(5, 10);
}
void <caret>foo(int x, int y){
}
}