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