a84b32af98
#KT-5492 Fixed
9 lines
135 B
Java
9 lines
135 B
Java
public class AAA {
|
|
private int x = 42;
|
|
private AAA other = new AAA();
|
|
|
|
public int getX() {
|
|
return other.x;
|
|
}
|
|
}
|