mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
274 B
Rust
10 lines
274 B
Rust
#![feature(staged_api)]
|
|
#![stable(feature = "stable_test_feature", since = "1.2.0")]
|
|
|
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "1")]
|
|
pub fn unstable() {}
|
|
|
|
#[unstable(feature = "unstable_test_feature", reason = "message", issue = "2")]
|
|
pub fn unstable_msg() {}
|