about summary refs log tree commit diff
path: root/src/test/compile-fail/lint-stability-fields.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-293/+0
2018-08-05Fix test/compile-failvarkor-11/+11
2018-06-11Stablize the alloc module without changing stability of its contents.Simon Sapin-0/+7
2016-11-28rustc: rework stability to be on-demand for type-directed lookup.Eduard Burtescu-115/+27
2015-11-25Remove all uses of `#[staged_api]`Vadim Petrochenkov-1/+0
2015-11-20Rename #[deprecated] to #[rustc_deprecated]Vadim Petrochenkov-6/+6
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+2
2015-10-13Refactor attr::StabilityVadim Petrochenkov-6/+6
Stricter checking + enforcement of invariants at compile time
2015-08-15test: Fix tests for requiring issuesAlex Crichton-11/+13
2015-06-11update stability compile-fail testsAlexis Beingessner-5/+30
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-42/+42
2015-02-26Check stability of struct fields.Huon Wilson-0/+346
We were recording stability attributes applied to fields in the compiler, and even annotating it in the libs, but the compiler didn't actually do the checks to give errors/warnings in user crates.