| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -55/+73 | |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -26/+26 | |
| floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change] | ||||
| 2014-06-18 | Regression tests for flowgraph construction bug on ExprWhile. | Felix S. Klock II | -0/+93 | |
