about summary refs log tree commit diff
path: root/src/test/pretty/match-naked-expr-medium.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-14/+0
2022-01-30Bless all pretty printer tests and ui testsDavid Tolnay-4/+4
2018-12-25Remove licensesMark Rousskov-10/+0
2015-01-30Remove all `i` suffixesTobias Bucher-1/+1
2014-07-29Fix a bug pretty printing `match { 5i } { _ => { } }`Erick Tryzelaar-1/+1
This also always puts a trailing comma on the last non-block expr.
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick 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-27std: Remove String's to_ownedRicho Healey-4/+4
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-2/+6
2014-03-21test: Make manual changes to deal with the fallout from removal ofPatrick Walton-2/+2
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
2014-03-21test: Automatically remove all `~[T]` from tests.Patrick Walton-2/+2
2013-05-27Change `alt` to `match` in filenames.Lindsey Kuper-0/+20