blob: e25960cc5a516cccd48972a9cf166e12e8ec86e0 [file] [log] [blame] [edit]
error[E0015]: cannot call non-const function `non_const_fn` in constants
--> $DIR/non-const.rs:11:31
|
LL | global_asm!("/* {} */", const non_const_fn(0));
| ^^^^^^^^^^^^^^^
|
note: function `non_const_fn` is not const
--> $DIR/non-const.rs:9:1
|
LL | fn non_const_fn(x: i32) -> i32 { x }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0015`.