Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineParameter
/
RefNewInnerFromMethod.java
blob: f3f66cb1c520f73ea675a59694a81bbee886080d [
file
] [
log
] [
blame
]
public
class
Subject
{
private
int
myInt
;
public
void
withClass
(
Object
<
caret
>
o
)
{
myInt
+=
o
.
hashCode
();
}
private
void
oper
()
throws
IOException
{
Subject
subj
=
new
Subject
();
class
Local
{
}
subj
.
withClass
(
new
Local
());
}
}