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
IDEADEV-25972
[fedora-idea.git]
/
testData
/
refactoring
/
inlineToAnonymousClass
/
StringInMethodCallFromConstructor.java.after
blob
0c2ca77039dfaa24455cb11752079bd5aa9ee6a9
1
class C {
2
public void test() {
3
Object i = new Object() {
4
private int myA;
5
6
{
7
process("a");
8
}
9
10
public void process(String s) {
11
myA = s.length();
12
}
13
};
14
}
15
}