Youssef Shoaib [MOD]
10/04/2025, 1:02 AMinterface Dsl<F>
context(_: Dsl<F>)
fun <F> dslFun() {}
data object FalseNegative : Dsl<List<List<List<*>>>> {
fun test() {
dslFun<Int>() // FalseNegative is somehow picked as the context
}
}
fun FalseNegative.anotherFalseNegative() {
dslFun<Int>()
}