Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
AnonymousClassAbstractMethod.groovy
blob: 3b47ccce558d027d85b9ac8d16e74ae0986b9c3a [
file
] [
log
] [
blame
]
import
java
.
awt
.
event
.
ActionEvent
import
java
.
awt
.
event
.
ActionListener
def
x
=
new
ActionListener
()
{
def
actionPerformed
(
ActionEvent
e
)
{
}
<
error descr
=
"Anonymous class cannot have abstract method"
>
abstract
</
error
>
void
foo
();
}