Skip to content

Commit 7f346c3

Browse files
committed
---
yaml --- r: 233571 b: refs/heads/beta c: 6532a08 h: refs/heads/master i: 233569: 19546cb 233567: b9082b3 v: v3
1 parent 935cb19 commit 7f346c3

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 3dc02978bd8e646496d691ed29b68264b4ec77b8
26+
refs/heads/beta: 6532a08525137a5f839c4ed555ad95360621f5db
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 370fe2786109360f7c35b8ba552b83b773dd71d6
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(staged_api)]
12+
#![staged_api]
13+
#![doc(issue_tracker_base_url = "http://issue_url/")]
14+
15+
// @has issue_27759/unstable/index.html
16+
// @has - '<code>test</code>'
17+
// @has - '<a href="http://issue_url/27759">#27759</a>'
18+
#[unstable(feature="test", issue="27759")]
19+
pub mod unstable {
20+
// @has issue_27759/unstable/fn.issue.html
21+
// @has - '<code>test_function</code>'
22+
// @has - '<a href="http://issue_url/1234567890">#1234567890</a>'
23+
#[unstable(feature="test_function", issue="1234567890")]
24+
pub fn issue() {}
25+
}

0 commit comments

Comments
 (0)