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