2015-09-12 16:10:12 +03:00
|
|
|
// Unstable entities should be caught in import lists
|
|
|
|
|
|
2018-11-05 04:00:03 +00:00
|
|
|
//@ aux-build:lint-stability.rs
|
2015-09-19 12:16:30 +03:00
|
|
|
|
2017-07-26 21:51:09 -07:00
|
|
|
#![allow(warnings)]
|
2015-09-12 16:10:12 +03:00
|
|
|
|
2015-09-19 12:16:30 +03:00
|
|
|
extern crate lint_stability;
|
|
|
|
|
|
2018-07-23 12:22:23 +01:00
|
|
|
use lint_stability::{unstable, deprecated};
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `unstable_test_feature`
|
2015-09-12 16:10:12 +03:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
}
|