Hi, I'm trying to configure some tasks in kotlin-d...
# gradle
c
Hi, I'm trying to configure some tasks in kotlin-dsl:
Copy code
tasks {
	"buildAngular"<Exec> {
	//...
	}
}
But I get this error
No type arguments expected for inline operator fun String.invoke(configuration: Task!.() -> Unit): Task!
What am I doing wrong? Edit: found out that
"buildAngular"(Exec::class)
works. But why doesn't generic one?