| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -51/+0 | |
| 2015-01-16 | syntax: 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-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2014-10-28 | Update code with new lint names | Aaron Turon | -1/+1 | |
| 2014-09-24 | Use more descriptive names in dead code messages | Jakub Wieczorek | -3/+3 | |
| 2014-06-28 | Rename all raw pointers as necessary | Alex Crichton | -1/+1 | |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -2/+2 | |
| Closes #2569 | ||||
| 2013-12-08 | Add dead-code warning pass | Kiet Tran | -0/+50 | |
