Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineMethod
/
IDEADEV6807.java
blob: 0342b9131d47779fa2426b07e7f90f697a81803b [
file
] [
log
] [
blame
]
class
Base
{
protected
int
f
;
public
int
<
caret
>
getF
()
{
return
f
;
}
}
class
DRV
extends
Base
{
void
f
()
{
int
f1
=
getF
();
}
}