2015-08-17 15:05:07 -05:00
|
|
|
#![feature(staged_api)]
|
|
|
|
#![doc(issue_tracker_base_url = "http://issue_url/")]
|
|
|
|
|
2015-11-16 10:54:28 -06:00
|
|
|
#![unstable(feature="test", issue="27759")]
|
|
|
|
|
2015-08-17 15:05:07 -05:00
|
|
|
// @has issue_27759/unstable/index.html
|
2022-08-10 15:13:18 -05:00
|
|
|
// @hasraw - '<code>test</code> <a href="http://issue_url/27759">#27759</a>'
|
2015-08-17 15:05:07 -05:00
|
|
|
#[unstable(feature="test", issue="27759")]
|
|
|
|
pub mod unstable {
|
|
|
|
// @has issue_27759/unstable/fn.issue.html
|
2022-08-10 15:13:18 -05:00
|
|
|
// @hasraw - '<code>test_function</code> <a href="http://issue_url/12345">#12345</a>'
|
2018-12-13 22:28:54 -06:00
|
|
|
#[unstable(feature="test_function", issue="12345")]
|
2015-08-17 15:05:07 -05:00
|
|
|
pub fn issue() {}
|
|
|
|
}
|