mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
319 B
Rust
12 lines
319 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() {}
|