Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
generateConstructor
/
afterEnumWithAbstractMethod.java
blob: 8a38e2b50e73fbeeebf860244275345c2f982e4d [
file
] [
log
] [
blame
]
public
enum
Operation
{
PLUS
{
int
eval
(
int
x
,
int
y
)
{
return
x
+
y
;
}
};
abstract
int
eval
(
int
x
,
int
y
);
Operation
()
{
}
}