[SLC] implement infrastructure for light class hierarchy tests
This commit is contained in:
committed by
Space Team
parent
feff03894f
commit
b2c0a37050
@@ -0,0 +1,21 @@
|
||||
package one.two
|
||||
|
||||
interface BaseInterface
|
||||
|
||||
enum class EnumEntries {
|
||||
FirstEntry,
|
||||
SecondEntryWithBody {
|
||||
fun foo() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
enum class EnumClassWithInterface : BaseInterface {
|
||||
NewFirstEntry,
|
||||
NewSecondEntryWithBody {
|
||||
fun foo() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user