diff options
| author | Alex Burka <aburka@seas.upenn.edu> | 2015-08-27 02:20:00 -0400 |
|---|---|---|
| committer | Alex Burka <aburka@seas.upenn.edu> | 2015-08-27 12:48:35 -0400 |
| commit | 595fda0de7fda252559b717e2e56b3b1eef1961e (patch) | |
| tree | cc1d3473672957f2fe120398bd9453e46a8471b7 /src/libcore | |
| parent | fd302a95e1197e5f8401ecaa15f2cb0f81c830c3 (diff) | |
| download | rust-595fda0de7fda252559b717e2e56b3b1eef1961e.tar.gz rust-595fda0de7fda252559b717e2e56b3b1eef1961e.zip | |
fix some more unstable issue annotations
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/macros.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 9f4d61a50d5..08dd6d76f3b 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -239,7 +239,8 @@ macro_rules! writeln { /// ``` #[macro_export] #[unstable(feature = "core", - reason = "relationship with panic is unclear")] + reason = "relationship with panic is unclear", + issue = "27701")] macro_rules! unreachable { () => ({ panic!("internal error: entered unreachable code") @@ -256,7 +257,8 @@ macro_rules! unreachable { /// message `"not yet implemented"` when executed. #[macro_export] #[unstable(feature = "core", - reason = "relationship with panic is unclear")] + reason = "relationship with panic is unclear", + issue = "27701")] macro_rules! unimplemented { () => (panic!("not yet implemented")) } |
