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
find type parameters for class
[fedora-idea.git]
/
java
/
java-tests
/
testData
/
refactoring
/
inlineMethod
/
EnumConstantConstructorParameterComplex.java
blob
4538a84342c8e5ba761e8b5748429db62490e3cd
1
public enum
EEE
{
2
a
(<
caret
>
doTest
());
3
4
EEE
(
String s
) {
5
}
6
7
private static
String
doTest
() {
8
System
.
out
.
println
(
"q"
);
9
return
""
;
10
}
11
}