Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
intentions
/
AnonymousClassWithOneMethod.groovy
blob: ebddcbdffc7af2e354a91d9676e673177599b6e2 [
file
] [
log
] [
blame
]
interface
A
{
def
a
()
}
def
x
=
new
A
<caret>
()
{
def
a
()
{
print
"wow"
}
}