From 29d2ceae7c03fb4a4d99e4e766cf212fb9582ffa Mon Sep 17 00:00:00 2001 From: Vadim Petrochenkov Date: Fri, 2 Nov 2018 02:22:30 +0300 Subject: Remove deprecated unstable `#[panic_implementation]` It was superseded by `#[panic_handler]` --- .../panic-implementation-deprecated.rs | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/test/ui/panic-implementation/panic-implementation-deprecated.rs (limited to 'src/test/ui/panic-implementation/panic-implementation-deprecated.rs') 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 or the MIT license -// , 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() {} -- cgit 1.4.1-3-g733a5