about summary refs log tree commit diff
path: root/src/test/compile-fail/lint-dead-code-2.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-51/+0
2015-01-16syntax: Feature gate #[start] and #[main]Alex Crichton-0/+1
These two attributes are used to change the entry point into a Rust program, but for now they're being put behind feature gates until we have a chance to think about them a little more. The #[start] attribute specifically may have its signature changed. This is a breaking change to due the usage of these attributes generating errors by default now. If your crate is using these attributes, add this to your crate root: #![feature(start)] // if you're using the #[start] attribute #![feature(main)] // if you're using the #[main] attribute cc #20064
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2014-10-28Update code with new lint namesAaron Turon-1/+1
2014-09-24Use more descriptive names in dead code messagesJakub Wieczorek-3/+3
2014-06-28Rename all raw pointers as necessaryAlex Crichton-1/+1
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-2/+2
Closes #2569
2013-12-08Add dead-code warning passKiet Tran-0/+50