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
/
QualifyParentStaticReferences.java.after
blob
775aa72e3523dea861a01a6b2e0057209f53adc8
1
class ParentCtor {
2
public static final String PARENT_CONST = "";
3
4
public ParentCtor(String s) {
5
}
6
}
7
8
class Usage {
9
public void test() {
10
new ParentCtor(ParentCtor.PARENT_CONST) {
11
};
12
}
13
}