| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -3/+3 | |
| 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-02-07 | Added tests to make tidy | Derek Guenther | -0/+10 | |
| 2013-09-25 | Fix run-pass tests to have 'pub fn main' | Alex Crichton | -1/+1 | |
| This is required by the check-fast target because each test is slurped up into a submodule. | ||||
| 2013-05-22 | Implement static_assert attribute | Corey Richardson | -0/+14 | |
| This verifies that a static item evaluates to true, at compile time. | ||||
