2022-06-19 22:13:08 -05:00
|
|
|
const fn failure() {
|
|
|
|
panic!("{:?}", 0);
|
|
|
|
//~^ ERROR cannot call non-const formatting macro in constant functions
|
2023-02-01 10:39:14 -06:00
|
|
|
//~| ERROR cannot call non-const fn `Arguments::<'_>::new_v1` in constant functions
|
2022-06-19 22:13:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const fn print() {
|
|
|
|
println!("{:?}", 0);
|
|
|
|
//~^ ERROR cannot call non-const formatting macro in constant functions
|
2023-02-01 10:39:14 -06:00
|
|
|
//~| ERROR cannot call non-const fn `Arguments::<'_>::new_v1` in constant functions
|
2022-06-19 22:13:08 -05:00
|
|
|
//~| ERROR cannot call non-const fn `_print` in constant functions
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|