diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2018-05-29 11:23:00 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2018-06-03 13:46:19 +0200 |
| commit | da2ee5dcb29b3675cb342c9bc240a22eea9cc2b7 (patch) | |
| tree | 4afa1b7897986449957131ee4b3eebd2ccc99d71 /src/test/compile-fail | |
| parent | 4c84d382ed87521a5b98b30f508366111dbbc7d5 (diff) | |
| download | rust-da2ee5dcb29b3675cb342c9bc240a22eea9cc2b7.tar.gz rust-da2ee5dcb29b3675cb342c9bc240a22eea9cc2b7.zip | |
reject `fn panic_impl<T>(_: &PanicInfo) -> !`
Diffstat (limited to 'src/test/compile-fail')
| -rw-r--r-- | src/test/compile-fail/panic-implementation-bad-signature-4.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/compile-fail/panic-implementation-bad-signature-4.rs b/src/test/compile-fail/panic-implementation-bad-signature-4.rs new file mode 100644 index 00000000000..d5f942ba2d6 --- /dev/null +++ b/src/test/compile-fail/panic-implementation-bad-signature-4.rs @@ -0,0 +1,23 @@ +// 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 + +#![feature(panic_implementation)] +#![no_std] +#![no_main] + +use core::panic::PanicInfo; + +#[panic_implementation] +fn panic<T>(pi: &PanicInfo) -> ! { + //~^ ERROR `#[panic_implementation]` function should have no type parameters + loop {} +} |
