Commits
Jordan Rose committed 405bfdc33b6
[Sema] Add a fix-it for non-optional bindings initialized with nil.
<stdin>:1:16: error: nil cannot initialize specified type 'Int'
var foo: Int = nil
^
<stdin>:1:10: note: add '?' to form the optional type 'Int?'
var foo: Int = nil
^
?