Sign in
android
/
platform
/
tools
/
idea
/
814f829cd44c28c7045e08b15bd7ee08890cbd80
/
.
/
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
()
{
}
}