summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/format.rs
blob: 3eef0d6c3d4d0ffa5dd6337395ffab4df501183d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const fn failure() {
    panic!("{:?}", 0);
    //~^ ERROR cannot call non-const formatting macro in constant functions
    //~| ERROR erroneous constant used
    //~| ERROR erroneous constant used
}

const fn print() {
    println!("{:?}", 0);
    //~^ ERROR cannot call non-const formatting macro in constant functions
    //~| ERROR `Arguments::<'a>::new_v1` is not yet stable as a const fn
    //~| ERROR cannot call non-const fn `_print` in constant functions
    //~| ERROR erroneous constant used
    //~| ERROR erroneous constant used
}

fn main() {}