implement methods in enum from super interface (IDEA-106310)

This commit is contained in:
anna
2013-04-29 19:55:58 +02:00
parent 5de5477453
commit 5e2184d2d4
6 changed files with 31 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
// "Implement Methods" "true"
interface Card {
void play();
}
enum E implements Card {
A<caret>
}

View File

@@ -0,0 +1,8 @@
// "Implement Methods" "true"
interface Card {
void play();
}
enum E implements Card {
A<caret>
}