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