about summary refs log tree commit diff
path: root/src/test/run-fail/assert-as-macro.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2015-01-31Kill more `isize`sTobias Bucher-2/+2
2015-01-06syntax/rustc: implement isize/usizeCorey Richardson-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]
2014-02-07Added tests to make tidyDerek Guenther-0/+10
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-1/+1
2013-01-23libsyntax: Implement `assert` as a macro (called `fail_unless!` on a ↵Patrick Walton-0/+6
transitionary basis to avoid conflicting with the keyword right now). r=brson