repo.or.cz
/
fedora-idea.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Inline inner: rise conflict for recursive inlinement (IDEA-39353)
[fedora-idea.git]
/
java
/
java-tests
/
testData
/
refactoring
/
inlineToAnonymousClass
/
NoInlineRecursiveAccess.java
blob
0ae807f3805f520ebf10a098dd2ed2c0d1145f62
1
public class
SelfParams
{
2
private int
myVar
=
0
;
3
4
private int
myProp
=
0
;
5
public int
getProp
() {
6
return
myProp
;
7
}
8
public void
setProp
(
int
prop
) {
9
myProp
=
prop
;
10
}
11
12
public void
copy
(
SelfParams sp
) {
13
this
.
myVar
=
sp
.
myVar
;
14
this
.
myProp
=
sp
.
getProp
();
15
}
16
}
17
18
class
Usage
{
19
SelfParams s
=
new
Self
<
caret
>
Params
();
20
}