mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
9 lines
123 B
Java
9 lines
123 B
Java
public class A {
|
|
public int i;
|
|
|
|
void foo(A a) {
|
|
System.out.println(a./*comment*/i);
|
|
a/*comment*/.i = 42;
|
|
}
|
|
}
|