2016-04-26 12:51:14 -05:00
|
|
|
#![feature(staged_api)]
|
2018-07-23 06:22:23 -05:00
|
|
|
#![stable(feature = "stable_test_feature", since = "1.2.0")]
|
2016-04-26 12:51:14 -05:00
|
|
|
|
|
|
|
|
2018-07-23 06:22:23 -05:00
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "1")]
|
2016-04-26 12:51:14 -05:00
|
|
|
pub fn unstable() {}
|
|
|
|
|
2018-07-23 06:22:23 -05:00
|
|
|
#[unstable(feature = "unstable_test_feature", reason = "message", issue = "2")]
|
2016-04-26 12:51:14 -05:00
|
|
|
pub fn unstable_msg() {}
|