| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-09-06 | Migrated slew of run-pass tests to various subdirectories of `ui/run-pass/`. | Felix S. Klock II | -20/+0 | |
| 2015-03-23 | rustdoc: Replace no-pretty-expanded with pretty-expanded | Brian Anderson | -0/+2 | |
| Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work. | ||||
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -1/+1 | |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -1/+1 | |
| 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-05-27 | std: Remove String's to_owned | Richo Healey | -3/+3 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -3/+3 | |
| 2013-02-17 | `pub fn main` for run-pass tests that didn't have it | Jed Davis | -1/+1 | |
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+10 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -3/+3 | |
| #2907. | ||||
| 2012-05-10 | Remove `do ... while` loops from the tests and docs. | Paul Stansifer | -2/+2 | |
| 2012-03-22 | make --enforce-mut-vars always on, add mut annotations to remaining files | Niko Matsakis | -2/+2 | |
| 2011-12-05 | rustc: Fix memory leak in do-while loop | Haitao Li | -0/+8 | |
| Issue #1257 | ||||
