]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/remove-never-const.rs
Rollup merge of #99864 - klensy:bootstrap-art-dupe, r=jyn514
[rust.git] / src / test / mir-opt / remove-never-const.rs
1 // This was originally a regression test for #66975 - ensure that we do not generate never typed
2 // consts in codegen. We also have tests for this that catches the error, see
3 // src/test/ui/consts/const-eval/index-out-of-bounds-never-type.rs.
4
5 // Force generation of optimized mir for functions that do not reach codegen.
6 // compile-flags: --emit mir,link
7
8 #![feature(never_type)]
9 #![warn(const_err)]
10
11 struct PrintName<T>(T);
12
13 impl<T> PrintName<T> {
14     const VOID: ! = panic!();
15 }
16
17 // EMIT_MIR remove_never_const.no_codegen.PreCodegen.after.mir
18 fn no_codegen<T>() {
19     let _ = PrintName::<T>::VOID;
20 }
21
22 fn main() {}