blob: 7ba993501214cfb3a528bc4d0cbbead26ddaae71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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() {}
|