2020-04-22 07:23:06 -05:00
|
|
|
// This was originally a regression test for #66975 - ensure that we do not generate never typed
|
|
|
|
// consts in codegen. We also have tests for this that catches the error, see
|
|
|
|
// src/test/ui/consts/const-eval/index-out-of-bounds-never-type.rs.
|
2019-12-08 15:50:23 -06:00
|
|
|
|
|
|
|
// Force generation of optimized mir for functions that do not reach codegen.
|
|
|
|
// compile-flags: --emit mir,link
|
|
|
|
|
|
|
|
#![feature(const_panic)]
|
2019-12-11 10:46:56 -06:00
|
|
|
#![feature(never_type)]
|
2019-12-08 06:51:55 -06:00
|
|
|
#![warn(const_err)]
|
2019-12-08 15:50:23 -06:00
|
|
|
|
|
|
|
struct PrintName<T>(T);
|
|
|
|
|
|
|
|
impl<T> PrintName<T> {
|
|
|
|
const VOID: ! = panic!();
|
|
|
|
}
|
|
|
|
|
2020-04-02 16:09:01 -05:00
|
|
|
// EMIT_MIR rustc.no_codegen.PreCodegen.after.mir
|
2019-12-08 15:50:23 -06:00
|
|
|
fn no_codegen<T>() {
|
|
|
|
let _ = PrintName::<T>::VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|