rust/tests/rustdoc/staged-api-feature-issue-27...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
610 B
Rust
Raw Permalink Normal View History

2023-10-05 04:04:45 +08:00
// https://github.com/rust-lang/rust/issues/27759
#![crate_name="issue_27759"]
2015-08-18 04:05:07 +08:00
#![feature(staged_api)]
#![doc(issue_tracker_base_url = "http://issue_url/")]
2015-11-17 00:54:28 +08:00
#![unstable(feature="test", issue="27759")]
//@ has issue_27759/unstable/index.html
//@ hasraw - '<code>test</code>&nbsp;<a href="http://issue_url/27759">#27759</a>'
2015-08-18 04:05:07 +08:00
#[unstable(feature="test", issue="27759")]
pub mod unstable {
//@ has issue_27759/unstable/fn.issue.html
//@ hasraw - '<code>test_function</code>&nbsp;<a href="http://issue_url/12345">#12345</a>'
#[unstable(feature="test_function", issue="12345")]
2015-08-18 04:05:07 +08:00
pub fn issue() {}
}