Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
slice
/
backward
/
DupSlice.java
blob: a983ee690561f0a604e333a130a597427a5e3430 [
file
] [
log
] [
blame
]
public
class
DupSlice
{
int
<
caret
>
field
;
void
multiply
(
int
fp
)
{
this
.
field
=
fp
;
multiplay2
(
1111111111
);
}
void
multiplay2
(
int
i
)
{
field
=
i
;
multiply
(
i
);
}
}