about summary refs log tree commit diff
path: root/src/test/compile-fail/die-not-static.rs
AgeCommit message (Collapse)AuthorLines
2013-09-30cfail: Remove usage of fmt!Alex Crichton-8/+0
2013-06-10std: remove str::{len, slice, is_empty} in favour of methods.Huon Wilson-1/+1
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+2
2013-04-30allover: numerous unused muts etcNiko Matsakis-2/+1
2013-04-25Made fail! and assert! accept both &'static str and ~str, as well as a fmt! ↵Marvin Löbel-0/+7
like format list. Unwinding through macros now happens as a call to the trait function `FailWithCause::fail_with()`, which consumes self, allowing to use a more generic failure object in the future.