Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
intentions
/
AnonymousClassWithSomeMethods.groovy
blob: 3257c1be3fd975afaa2bbe8ea47cbb8632e30a59 [
file
] [
log
] [
blame
]
interface
A
{
def
a
(
int
x
,
double
y
)
def
b
(
int
x
)
}
def
x
=
new
A
<caret>
(){
def
a
(
int
x
,
double
y
)
{}
def
b
(
int
x
)
{}
}