I've updated IntelliJ IDEA to 2026.1.3 but code us...
# intellij
p
I've updated IntelliJ IDEA to 2026.1.3 but code using context parameters still marked as experemental (Kotlin language level is set to 2.4, Gradle reload project was done).
m
Same for explicit backing fields. 2026.1.4 will support it without the need for the compiler flags, but we'll have to wait a bit longer for its release
s
And keeping the flags (to avoid the IDE errors) instead causes a compilation error on Kotlin 2.4, which is less than ideal. Seems like we're stuck with either (1) not updating to 2.4 or (2) living with IDE errors for some time. =/
Oh, nevermind, they are probably actually just warnings, not errors. But we
-Werror
enabled. 😅
Copy code
e: The argument '-Xannotation-default-target=param-property' is redundant for the current language version 2.4.
e: The argument '-Xcontext-parameters' is redundant for the current language version 2.4.
e: The argument '-Xexplicit-backing-fields' is redundant for the current language version 2.4.
e: warnings found and -Werror specified
t
You need to use 2026.2 EAP release
🙏 1