summaryrefslogtreecommitdiffstats
path: root/src/test/ui/stability-attribute/auxiliary/lint-stability-reexport.rs
blob: 9884731d562e9fc5c749c8fb80b490bb347d989c (plain)
1
2
3
4
5
6
7
8
9
#![crate_type = "lib"]
#![feature(staged_api)]
#![stable(feature = "lint_stability", since = "1.0.0")]

extern crate lint_stability;

// Re-exporting without enabling the feature "unstable_test_feature" in this crate
#[unstable(feature = "unstable_test_feature", issue = "none")]
pub use lint_stability::unstable_text;