Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
goto
/
NewExpressionWithAnonymousClass.groovy
blob: f571756bb1c2ca89a9dc090afa52da6a0bf3ff38 [
file
] [
log
] [
blame
]
abstract
class
A
{
def
A
(
int
x
,
double
y
){
}
def
A
(){}
abstract
foo
();
}
def
a
=
new
A
<caret>
(
3
,
5.6
){
def
foo
(){}
}