diff options
| author | bors <bors@rust-lang.org> | 2015-08-28 02:49:45 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-28 02:49:45 +0000 |
| commit | 3a804114158dbde947cd9fffc2ad28be9c1dd14c (patch) | |
| tree | 216ce03261ee4403e3277f7c0f1308e12848995d /src/libstd | |
| parent | 20a8412e09e2883489736b4ae3dc138f243d1a17 (diff) | |
| parent | 595fda0de7fda252559b717e2e56b3b1eef1961e (diff) | |
| download | rust-3a804114158dbde947cd9fffc2ad28be9c1dd14c.tar.gz rust-3a804114158dbde947cd9fffc2ad28be9c1dd14c.zip | |
Auto merge of #28038 - durka:grep-unstable-issue-refs, r=alexcrichton
After submitting #28031, I ran a [script](https://gist.github.com/durka/a5243440697c780f669b) on the rest of src/ and found some anomalies. In this PR are the fixes that I thought were obvious (but I might be wrong!). The others I've submitted in issue #28037.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 53a14c2b21b..317130f5f0e 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -168,7 +168,7 @@ macro_rules! try { /// /// For more information about select, see the `std::sync::mpsc::Select` structure. #[macro_export] -#[unstable(feature = "mpsc_select")] +#[unstable(feature = "mpsc_select", issue = "27800")] macro_rules! select { ( $($name:pat = $rx:ident.$meth:ident() => $code:expr),+ |
