mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
11 lines
205 B
Java
11 lines
205 B
Java
// "Join declaration and assignment" "true"
|
|
class T {
|
|
{
|
|
int a =<caret> foo(1);
|
|
a = foo(2);
|
|
}
|
|
static int foo(int n) {
|
|
System.out.println(n);
|
|
return n + 1;
|
|
}
|
|
} |