summary refs log tree commit diff
path: root/src/test/compile-fail/lint-dead-code-3.rs
AgeCommit message (Collapse)AuthorLines
2014-09-24Use more descriptive names in dead code messagesJakub Wieczorek-6/+6
2014-08-14libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;`Patrick Walton-1/+1
The old syntax will be removed after a snapshot. RFC #47. Issue #16461.
2014-07-21privacy: Add publically-reexported foreign item to exported item setKiet Tran-0/+5
Close #15740
2014-06-28Rename all raw pointers as necessaryAlex Crichton-3/+3
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-1/+1
This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change]
2014-04-04Fix fallout from std::libc separationCorey Richardson-1/+3
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-4/+4
Closes #2569
2014-02-21Changed NonCamelCaseTypes lint to warn by defaultmr.Shu-0/+1
Added allow(non_camel_case_types) to librustc where necesary Tried to fix problems with non_camel_case_types outside rustc fixed failing tests Docs updated Moved #[allow(non_camel_case_types)] a level higher. markdown.rs reverted Fixed timer that was failing tests Fixed another timer
2013-12-31Mark provided methods in dead-code passKiet Tran-0/+16
2013-12-14Dead-code pass now marks and warns foreign itemsKiet Tran-3/+19
2013-12-08Add dead-code warning passKiet Tran-0/+50