2013-10-08 20:26:09 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-07 17:48:16 -06:00
|
|
|
// compile-flags:-F unstable
|
Add stability inheritance
This commit makes several changes to the stability index infrastructure:
* Stability levels are now inherited lexically, i.e., each item's
stability level becomes the default for any nested items.
* The computed stability level for an item is stored as part of the
metadata. When using an item from an external crate, this data is
looked up and cached.
* The stability lint works from the computed stability level, rather
than manual stability attribute annotations. However, the lint still
checks only a limited set of item uses (e.g., it does not check every
component of a path on import). This will be addressed in a later PR,
as part of issue #8962.
* The stability lint only applies to items originating from external
crates, since the stability index is intended as a promise to
downstream crates.
* The "experimental" lint is now _allow_ by default. This is because
almost all existing crates have been marked "experimental", pending
library stabilization. With inheritance in place, this would generate
a massive explosion of warnings for every Rust program.
The lint should be changed back to deny-by-default after library
stabilization is complete.
* The "deprecated" lint still warns by default.
The net result: we can begin tracking stability index for the standard
libraries as we stabilize, without impacting most clients.
Closes #13540.
2014-06-11 19:23:11 -05:00
|
|
|
// aux-build:lint_output_format.rs
|
2013-10-08 20:26:09 -05:00
|
|
|
|
2014-11-04 01:54:12 -06:00
|
|
|
extern crate lint_output_format; //~ ERROR: use of unmarked item
|
2015-01-07 17:48:16 -06:00
|
|
|
use lint_output_format::{foo, bar};
|
2013-10-08 20:26:09 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _x = foo(); //~ WARNING #[warn(deprecated)] on by default
|
2015-01-07 17:48:16 -06:00
|
|
|
let _y = bar(); //~ ERROR [-F unstable]
|
2013-10-08 20:26:09 -05:00
|
|
|
}
|