Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
pushDown
/
ThisRefInAnonymous.java
blob: 886e169d132d34db0a592e8d3f418e39647d0854 [
file
]
class
A
{
void
<
caret
>
foo
()
{
new
Runnable
()
{
public
void
run
()
{
A
.
this
.
toString
();
}
}
}
void
leaveIt
()
{
new
Runnable
()
{
public
void
run
()
{
A
.
this
.
toString
();
}
}
}
}
class
B
extends
A
{
}