Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineParameter
/
RefNewTopLevel.java
blob: c5212b24584c1df31efc314a02b106be26565a11 [
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
TopLevel
());
}
}
class
TopLevel
{}