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
/
MethodCallInNewExpressionWithParens.java.after
blob
51d1f344faf3ac5bcbc3d104fe2f8cdb561dbbf3
1
public class A {
2
3
public void test() {
4
(new Object() {
5
void doTest() {
6
}
7
}).doTest();
8
}
9
}