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
/
Scr10884.java
blob
3c593cf76a1d0b8c5bc84c20dd138e0b8d0a9306
1
public class
Scr10884
{
2
int
foo
() {
3
return
1
;
4
}
5
Y
bar
() {
6
return new
Y
(<
caret
>
foo
()) {
7
};
8
}
9
}
10
11
class
Y
{
12
Y
(
int
x
) {}
13
int
foo
() {
14
return
2
;
15
}
16
}