[SLC] implement infrastructure for light class hierarchy tests

This commit is contained in:
Dmitrii Gridin
2022-12-07 15:18:01 +01:00
committed by Space Team
parent feff03894f
commit b2c0a37050
38 changed files with 2233 additions and 13 deletions
@@ -0,0 +1,21 @@
package one.two
interface BaseInterface
enum class EnumEntries {
FirstEntry,
SecondEntryWithBody {
fun foo() {
}
}
}
enum class EnumClassWithInterface : BaseInterface {
NewFirstEntry,
NewSecondEntryWithBody {
fun foo() {
}
}
}