2023-10-04 13:04:45 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/27759
|
2023-10-04 12:08:47 -07:00
|
|
|
#![crate_name="issue_27759"]
|
|
|
|
|
2015-08-17 22:05:07 +02:00
|
|
|
#![feature(staged_api)]
|
|
|
|
#![doc(issue_tracker_base_url = "http://issue_url/")]
|
|
|
|
|
2015-11-16 19:54:28 +03:00
|
|
|
#![unstable(feature="test", issue="27759")]
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has issue_27759/unstable/index.html
|
|
|
|
//@ hasraw - '<code>test</code> <a href="http://issue_url/27759">#27759</a>'
|
2015-08-17 22:05:07 +02:00
|
|
|
#[unstable(feature="test", issue="27759")]
|
|
|
|
pub mod unstable {
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has issue_27759/unstable/fn.issue.html
|
|
|
|
//@ hasraw - '<code>test_function</code> <a href="http://issue_url/12345">#12345</a>'
|
2018-12-13 23:28:54 -05:00
|
|
|
#[unstable(feature="test_function", issue="12345")]
|
2015-08-17 22:05:07 +02:00
|
|
|
pub fn issue() {}
|
|
|
|
}
|