blob: 4e5333289c43cc4bca7acc0837fdcec7cb36c61a (
plain)
1
2
3
4
5
6
7
8
9
|
#![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() {}
|