<@U092308M7> Interesting bug in the Kotlin Script...
# announcements
j
@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:
Copy code
val first by tasks.creating {
  dependsOn(second)
}
val second by tasks.creating
o
@ilya.chernikov