Is it possible to have nested lambdas which uses d...
# getting-started
j
Is it possible to have nested lambdas which uses different
DslMarker
markers and picking the nested one? If I have two function with the same name, the outermost is used
Copy code
kotlin {
    android() // from kotlin
    multiplatform {
        common()
        android() // from kotlin, should be from multiplatform
        jvm()
    }
}