mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Inline inner: rise conflict for recursive inlinement (IDEA-39353)
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
public class SelfParams {
|
||||
private int myVar = 0;
|
||||
|
||||
private int myProp = 0;
|
||||
public int getProp() {
|
||||
return myProp;
|
||||
}
|
||||
public void setProp(int prop) {
|
||||
myProp = prop;
|
||||
}
|
||||
|
||||
public void copy(SelfParams sp) {
|
||||
this.myVar = sp.myVar;
|
||||
this.myProp = sp.getProp();
|
||||
}
|
||||
}
|
||||
|
||||
class Usage {
|
||||
SelfParams s = new Self<caret>Params();
|
||||
}
|
||||
Reference in New Issue
Block a user