mirror of
https://github.com/apple/swift.git
synced 2025-12-25 12:15:36 +01:00
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` ```