<https://twitter.com/kotlin/status/125035799981579...
# announcements
u
https://twitter.com/kotlin/status/1250357999815790592 Kotlin 1.3.72 has been released, and it comes with important bug fixes for 1.3.70. Changelog https://github.com/JetBrains/kotlin/releases/tag/v1.3.72 Twitter
🎉 12
t
Can anyone confirm if 1.3.72 works/does not work with Kodein? We get 
Not enough information to infer type variable T
 when we use 
val foo: Bar by instance()
 . This worked fine in 1.3.71 for us.
val foo by instance<Bar>()
 still works for us in 1.3.72
m
It seems there is a problem in new inference in 1.3.72 for your case: https://youtrack.jetbrains.com/issue/KT-38259 As a workaround, could you please disable new type inference in IDE by unchecking checkbox "Enable new type inference algorithm..." in
Preferences -> Kotlin Compiler
t
thanks for the issue!
and the workaround
Path is "Build, Execution, Deployment » Compiler » Kotlin Compiler"
n
What compatibility is broken for Kotlin Native in this Kotlin release?