diff options
| author | kennytm <kennytm@gmail.com> | 2018-11-06 15:21:01 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-11-06 17:08:08 +0800 |
| commit | 6091696cfd7d4661b8e9352eeb1e87eff29f15fa (patch) | |
| tree | 1a579a9431d6b1adbf3013c8b6ff24aa89bb1dcf /src/test/ui/panic-implementation/panic-implementation-deprecated.rs | |
| parent | 462f63e1bbb59f1e4cea5272028e85852f9129aa (diff) | |
| parent | 29d2ceae7c03fb4a4d99e4e766cf212fb9582ffa (diff) | |
| download | rust-6091696cfd7d4661b8e9352eeb1e87eff29f15fa.tar.gz rust-6091696cfd7d4661b8e9352eeb1e87eff29f15fa.zip | |
Rollup merge of #55601 - petrochenkov:featissue, r=pnkfelix
Fix tracking issue numbers for some unstable features And also remove deprecated unstable `#[panic_implementation]` attribute that was superseded by stable `#[panic_handler]` and doesn't have an open tracking issue.
Diffstat (limited to 'src/test/ui/panic-implementation/panic-implementation-deprecated.rs')
| -rw-r--r-- | src/test/ui/panic-implementation/panic-implementation-deprecated.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/panic-implementation/panic-implementation-deprecated.rs b/src/test/ui/panic-implementation/panic-implementation-deprecated.rs deleted file mode 100644 index c4bec01f6af..00000000000 --- a/src/test/ui/panic-implementation/panic-implementation-deprecated.rs +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or -// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -// compile-flags:-C panic=abort - -#![deny(deprecated)] -#![feature(panic_implementation)] -#![no_std] - -use core::panic::PanicInfo; - -#[panic_implementation] -fn panic(info: &PanicInfo) -> ! { - loop {} -} - -fn main() {} |
