Removed incorrect explanation of assignment error (#1)

It really has nothing to do with the if/else expression. The peer
types are being resolved correctly.  The same error can be produced
with something as simple as:

    var foo = 5;
This commit is contained in:
Dave Gauer 2021-02-10 21:44:11 -05:00
parent 961cf22b88
commit 5b47e8ebe6
2 changed files with 5 additions and 8 deletions

View file

@ -3,14 +3,6 @@
//
// var foo: u8 = if (a) 2 else 3;
//
// Note: You'll need to declare a variable type when assigning a value
// from a statement like this because the compiler isn't smart enough
// to infer the type for you.
//
// This WON'T work:
//
// var foo = if (a) 2 else 3; // error!
//
const std = @import("std");
pub fn main() void {