diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2017-08-09 01:03:50 +0200 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2017-08-09 01:03:50 +0200 |
| commit | 5704b07667fddb415a1df202885f5ffabe386ff2 (patch) | |
| tree | 257a89661d51c5bda59ddf39a8c2db874be1c1d1 /src/libcore | |
| parent | 315de9c58f15612ffacac6f264e50f8f57181080 (diff) | |
| download | rust-5704b07667fddb415a1df202885f5ffabe386ff2.tar.gz rust-5704b07667fddb415a1df202885f5ffabe386ff2.zip | |
`mem::unreachable`: Add tracking issue
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/mem.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs index 55b34fe81ed..045720b0268 100644 --- a/src/libcore/mem.rs +++ b/src/libcore/mem.rs @@ -949,7 +949,7 @@ impl<T: ::fmt::Debug> ::fmt::Debug for ManuallyDrop<T> { /// NB: This is very different from the `unreachable!()` macro: Unlike the /// macro, which panics when it is executed, it is *undefined behavior* to /// reach code marked with this function. -#[unstable(feature = "unreachable", issue = "0")] +#[unstable(feature = "unreachable", issue = "43751")] pub unsafe fn unreachable() -> ! { intrinsics::unreachable() } |
