about summary refs log tree commit diff
path: root/src/test/run-fail/mod-zero.rs
AgeCommit message (Collapse)AuthorLines
2020-05-06Move tests from `test/run-fail` to UIYuki Okushi-6/+0
2020-04-28Allow Locals to be propagated into and from, but restricted to their own blockFélix Fischer-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2016-10-18Fix some pretty printing testsVadim Petrochenkov-2/+0
2016-08-04Update wording on E0080Shantanu Raj-1/+1
Change "attempted" to "attempt"
2016-06-05trans: use the same messages for both MIR and old arithmetic checks.Eduard Burtescu-1/+1
2016-06-05Enable the overflow-related tests for MIRJames Miller-2/+0
2016-03-17Add #[rustc_no_mir] to make tests pass with -Z orbit.Eduard Burtescu-0/+5
2015-01-30Remove all `i` suffixesTobias Bucher-2/+2
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-2/+2
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]
2013-08-17Fix warnings it testsErick Tryzelaar-1/+1
2013-04-24Improve divide-by-zero error messagesBrendan Zabarauskas-1/+1
2013-04-22Rename Div operator trait to Quot and Modulo operator trait to RemBrendan Zabarauskas-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-06-14Add zero check/fail paths on div/mod paths. Close #944.Graydon Hoare-0/+5