Recently Kotlin compiler starts to show messages i...
# intellij
p
Recently Kotlin compiler starts to show messages in different format in case of compilation errors. For example:
Copy code
Problem found: Kotlin compiler: UNRESOLVED_IMPORT (id: kotlin:compiler:error:UNRESOLVED_IMPORT)
  Kotlin compiler error
    Unresolved reference 'SomeClassName'.
    Location: /absolute/path/to/file.kt line 1
And Intellij Idea is not marking location as clickable link. Is there any settings on compiler side or Idea side to make such links clickable with navigation to source of compilation error?
1
t
Where exactly do you see this output — in IntelliJ IDEA's Build tool window, Gradle output, or when running the Kotlin compiler directly (
kotlinc
)?
t
thank you color 1
🙌 1
p
@tapchicoma With Gradle 9.8.0-rc-1 the message is formatted as suggested in github.com/gradle/gradle/issues/38808 But Intellij Idea (2026.2.2) still not making locations clickable.
Copy code
Problem found: Kotlin compiler: NO_VALUE_FOR_PARAMETER (id: kotlin:compiler:error:NO_VALUE_FOR_PARAMETER)
  Kotlin compiler error
    No value passed for parameter 'x'.
    Location: /home/user/project/file.kt:999