]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/const_panic_libcore_main.rs
f5e5f9778faed70a352dde4485eae5666423dfa4
[rust.git] / src / test / ui / consts / const-eval / const_panic_libcore_main.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![crate_type = "bin"]
12 #![feature(lang_items)]
13 #![feature(panic_handler)]
14 #![feature(const_panic)]
15 #![no_main]
16 #![no_std]
17
18 use core::panic::PanicInfo;
19
20 const Z: () = panic!("cheese");
21 //~^ ERROR this constant cannot be used
22
23 const Y: () = unreachable!();
24 //~^ ERROR this constant cannot be used
25
26 const X: () = unimplemented!();
27 //~^ ERROR this constant cannot be used
28
29 #[lang = "eh_personality"]
30 fn eh() {}
31 #[lang = "eh_unwind_resume"]
32 fn eh_unwind_resume() {}
33
34 #[panic_handler]
35 fn panic(_info: &PanicInfo) -> ! {
36     loop {}
37 }