@orangy
Interesting bug in the Kotlin Script Parser that might interest you:
https://github.com/gradle/kotlin-dsl/issues/928
TL;DR:
This code compiles in Kotlin scripts but throws an NPE at runtime:
val first by tasks.creating {
dependsOn(second)
}
val second by tasks.creating