Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
AnonymousClassStaticMethod.groovy
blob: 4ce0a777fdf3a45417869d4b874302589f1bcd79 [
file
] [
log
] [
blame
]
import
java
.
awt
.
event
.
ActionListener
import
java
.
awt
.
event
.
ActionEvent
def
x
=
new
ActionListener
()
{
def
actionPerformed
(
ActionEvent
e
)
{
}
<
error descr
=
"Inner classes cannot have static declarations"
>
static
</
error
>
void
foo
(){
}
}