2023-10-16 17:36:39 +00:00
|
|
|
// skip-filecheck
|
2020-04-22 12:23:06 +00: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
|
2023-01-05 08:45:44 +00:00
|
|
|
// tests/ui/consts/const-eval/index-out-of-bounds-never-type.rs.
|
2019-12-08 21:50:23 +00:00
|
|
|
|
2019-12-11 16:46:56 +00:00
|
|
|
#![feature(never_type)]
|
2019-12-08 21:50:23 +00:00
|
|
|
|
|
|
|
struct PrintName<T>(T);
|
|
|
|
|
|
|
|
impl<T> PrintName<T> {
|
|
|
|
const VOID: ! = panic!();
|
|
|
|
}
|
|
|
|
|
2020-07-27 19:22:43 +00:00
|
|
|
// EMIT_MIR remove_never_const.no_codegen.PreCodegen.after.mir
|
2019-12-08 21:50:23 +00:00
|
|
|
fn no_codegen<T>() {
|
|
|
|
let _ = PrintName::<T>::VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|