summaryrefslogtreecommitdiffstats
path: root/src/test/ui/stability-attribute/auxiliary/stable-in-unstable-core.rs
blob: e45b00f994af45139222fd2e9b1d8a2112a13238 (plain)
1
2
3
4
5
6
7
8
#![feature(staged_api)]
#![stable(feature = "stable_test_feature", since = "1.2.0")]

#[unstable(feature = "unstable_test_feature", issue = "1")]
pub mod new_unstable_module {
    #[stable(feature = "stable_test_feature", since = "1.2.0")]
    pub trait OldTrait {}
}