]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-27759.rs
Auto merge of #107778 - weihanglo:update-cargo, r=weihanglo
[rust.git] / tests / rustdoc / issue-27759.rs
1 #![feature(staged_api)]
2 #![doc(issue_tracker_base_url = "http://issue_url/")]
3
4 #![unstable(feature="test", issue="27759")]
5
6 // @has issue_27759/unstable/index.html
7 // @hasraw - '<code>test</code>&nbsp;<a href="http://issue_url/27759">#27759</a>'
8 #[unstable(feature="test", issue="27759")]
9 pub mod unstable {
10     // @has issue_27759/unstable/fn.issue.html
11     // @hasraw - '<code>test_function</code>&nbsp;<a href="http://issue_url/12345">#12345</a>'
12     #[unstable(feature="test_function", issue="12345")]
13     pub fn issue() {}
14 }