I have following scala code:
LocalDate.ofInstant(instant, zoneId)
instant is java.time.Instant, zoneId is java.time.ZoneId.
Intellij project is configured to jdk 17 and language level to 15.
But I get error:
value ofInstant is not a member of object java.time.LocalDate
I am unable to find why. Java versions are correct one I think.