// https://github.com/rust-lang/rust/issues/27759 #![crate_name="issue_27759"] #![feature(staged_api)] #![doc(issue_tracker_base_url = "http://issue_url/")] #![unstable(feature="test", issue="27759")] // @has issue_27759/unstable/index.html // @hasraw - 'test #27759' #[unstable(feature="test", issue="27759")] pub mod unstable { // @has issue_27759/unstable/fn.issue.html // @hasraw - 'test_function #12345' #[unstable(feature="test_function", issue="12345")] pub fn issue() {} }