mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
507 B
Rust
15 lines
507 B
Rust
#![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 {
|
|
#[stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
#[rustc_allowed_through_unstable_modules]
|
|
pub trait OldStableTraitAllowedThoughUnstable {}
|
|
|
|
#[stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
pub trait NewStableTraitNotAllowedThroughUnstable {}
|
|
}
|