mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
8eaeb51fe5
Introduce a fix/diagnostic when there is a contextual mismatch between source and destination types of the assignment e.g.: ```swift var x: Int = 0 x = 4.0 // destination expects an `Int`, but source is a `Double` ```