mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 04:21:19 +01:00
d7d6238b23
This is consistent with all other diagnostics I could find containing features and enables the use of `DiagSymbolList` for generalizing diagnostics for unstable library features to multiple features.
14 lines
265 B
Rust
14 lines
265 B
Rust
// Unstable entities should be caught in import lists
|
|
|
|
//@ aux-build:lint-stability.rs
|
|
|
|
#![allow(warnings)]
|
|
|
|
extern crate lint_stability;
|
|
|
|
use lint_stability::{unstable, deprecated};
|
|
//~^ ERROR use of unstable library feature `unstable_test_feature`
|
|
|
|
fn main() {
|
|
}
|