2015-09-15 16:50:50 -05:00
|
|
|
// Prefix in imports with empty braces should be resolved and checked privacy, stability, etc.
|
|
|
|
|
2018-11-04 22:00:03 -06:00
|
|
|
// aux-build:lint-stability.rs
|
2015-09-19 04:16:30 -05:00
|
|
|
|
|
|
|
extern crate lint_stability;
|
|
|
|
|
2018-07-23 06:22:23 -05:00
|
|
|
use lint_stability::UnstableEnum::{};
|
|
|
|
//~^ ERROR use of unstable library feature 'unstable_test_feature'
|
2016-11-30 16:35:25 -06:00
|
|
|
use lint_stability::StableEnum::{}; // OK
|
2015-09-15 16:50:50 -05:00
|
|
|
|
|
|
|
fn main() {}
|