atlantis210
02/06/2025, 4:39 PMsealed interface EntangledSealedInterface {
sealed interface InnerInterface: EntangledSealedInterface {
data object FirstInnerInterface: InnerInterface
data class SecondInnerInterface(val fourthClass: FourthClass): InnerInterface
}
}
->
com.example.EntangledSealedInterface$InnerInterface$SecondInnerInterface returns null. Is there a limitation to nested classes/interfaces or something I'm doing is wrong ?atlantis210
02/10/2025, 8:22 AMcom.example.EntangledSealedInterface$InnerInterface$SecondInnerInterface
whereas for the resolver.getKotlinClassByName
to work, it has to be com.example.EntangledSealedInterface.InnerInterface.SecondInnerInterface
. I put it here in case there is a someone posting the same question