how to enable context receivers? this doesnt seem to work ```tasks { withType<KotlinCompile&l...
e
how to enable context receivers? this doesnt seem to work
Copy code
tasks {
    withType<KotlinCompile<*>>().all {
        kotlinOptions {
            freeCompilerArgs += listOf("-Xcontext-receivers")
        }
    }