2022-05-09 22:18:53 +00:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(staged_api)]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
|
|
|
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "1")]
|
|
|
|
pub mod unstable_module {
|
2025-01-01 18:09:01 +00:00
|
|
|
#[stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
|
|
#[rustc_allowed_through_unstable_modules = "use the new path instead"]
|
2025-02-02 11:33:40 +00:00
|
|
|
pub trait OldStableTraitAllowedThoughUnstable {}
|
2025-01-01 18:09:01 +00:00
|
|
|
|
2022-05-09 22:18:53 +00:00
|
|
|
#[stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
|
|
pub trait NewStableTraitNotAllowedThroughUnstable {}
|
|
|
|
}
|