At the moment, ``` fn main() { let uint i = uint(1); i += uint(1); } ``` fails to compile, giving the error: ``` uintplus.rs:3:2 - 4:0:E:Error: mismatched types: uint vs. <plusable> ``` Fix this.