All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.Test.kt Maven / Gradle / Ivy

The newest version!
package dev.inmo.micro_utils.ksp.classcasts.generator.test

import dev.inmo.micro_utils.ksp.classcasts.ClassCastsExcluded
import dev.inmo.micro_utils.ksp.classcasts.ClassCastsIncluded

@ClassCastsIncluded(levelsToInclude = 1)
sealed interface Test {
    object A : Test
    @ClassCastsExcluded
    object B : Test // Will not be included in class casts due to annotation ClassCastsExcluded
    object C : Test
    interface D : Test {
        object DD : D // Will not be included in class casts due to levelsToInclude
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy