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.
12 lines
320 B
Rust
12 lines
320 B
Rust
// Prefix in imports with empty braces should be resolved and checked privacy, stability, etc.
|
|
|
|
//@ aux-build:lint-stability.rs
|
|
|
|
extern crate lint_stability;
|
|
|
|
use lint_stability::UnstableEnum::{};
|
|
//~^ ERROR use of unstable library feature `unstable_test_feature`
|
|
use lint_stability::StableEnum::{}; // OK
|
|
|
|
fn main() {}
|