about summary refs log tree commit diff
path: root/src/test/ui/panic-implementation/panic-implementation-deprecated.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-11-02 02:22:30 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-11-02 02:22:30 +0300
commit29d2ceae7c03fb4a4d99e4e766cf212fb9582ffa (patch)
tree889e40eb304ad091e669608fdad73e62a0e101d0 /src/test/ui/panic-implementation/panic-implementation-deprecated.rs
parent89cf577c73b70e66157d9a4ff6560e738d039ab1 (diff)
downloadrust-29d2ceae7c03fb4a4d99e4e766cf212fb9582ffa.tar.gz
rust-29d2ceae7c03fb4a4d99e4e766cf212fb9582ffa.zip
Remove deprecated unstable `#[panic_implementation]`
It was superseded by `#[panic_handler]`
Diffstat (limited to 'src/test/ui/panic-implementation/panic-implementation-deprecated.rs')
-rw-r--r--src/test/ui/panic-implementation/panic-implementation-deprecated.rs24
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() {}