mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
147 B
Java
13 lines
147 B
Java
public class Test {
|
|
|
|
int x;
|
|
|
|
static void foo<caret>(int y){
|
|
System.out.println(x + y);
|
|
}
|
|
|
|
void test(){
|
|
foo(y);
|
|
}
|
|
}
|