mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
146 B
Java
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);
|
|
}
|
|
}
|