| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-07-15 | Move some `compile-fail` tests to `ui` | Esteban Küber | -17/+0 | |
| 2016-05-02 | update test cases to reflect new messages | Niko Matsakis | -1/+1 | |
| 2015-01-16 | syntax: Feature gate #[start] and #[main] | Alex Crichton | -0/+2 | |
| 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-06 | test fallout from isize/usize | Corey Richardson | -2/+2 | |
| 2014-12-22 | Fix fallout from changes. In cases where stage0 compiler is needed, we | Niko Matsakis | -1/+1 | |
| cannot use an `as` expression to coerce, so I used a one-off function instead (this is a no-op in stage0, but in stage1+ it triggers coercion from the fn pointer to the fn item type). | ||||
| 2014-06-28 | Rename all raw pointers as necessary | Alex Crichton | -2/+2 | |
| 2014-01-31 | Add test for sensible #[start] error message. | Huon Wilson | -0/+15 | |
| Fixes #9575. | ||||
