| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -38/+38 | |
| 2015-01-13 | graphviz-flowgraph tests: use new `--xpretty flowgraph,unlabelled` option. | Felix S. Klock II | -4/+4 | |
| This makes the tests much easier to maintain; the particular details of the labels attached to exiting scopes is not worth the effort required to keep it up to date as things change in the compiler internals. | ||||
| 2015-01-06 | test fallout from isize/usize | Corey Richardson | -42/+42 | |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -80/+116 | |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -32/+32 | |
| 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/+123 | |
