Commits

Doug Gregor committed 147f4b8b7b6
Allow the type of any variable to be inferred from its initializer. This eliminates the local-variable restriction on the inference of a variable's type, e.g., this is now well-formed: class MyClass { var size = 0 // inferred to Int } Fixes <rdar://problem/15017440>. Swift SVN r9681