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