summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/panic-assoc-never-type.rs
blob: 80b0a1432fbbb3bd37d747fab2e526560064f936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// build-fail

// Regression test for #66975
#![warn(const_err)]
#![feature(never_type)]

struct PrintName;

impl PrintName {
    const VOID: ! = panic!();
    //~^ ERROR evaluation of constant value failed
}

fn main() {
    let _ = PrintName::VOID;
    //~^ ERROR erroneous constant used [E0080]
}