2024-09-26 18:16:40 +00:00
|
|
|
//@ needs-asm-support
|
|
|
|
|
|
|
|
use std::arch::global_asm;
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
// Constants must be... constant
|
|
|
|
fn non_const_fn(x: i32) -> i32 { x }
|
|
|
|
|
|
|
|
global_asm!("/* {} */", const non_const_fn(0));
|
2024-12-23 21:49:48 +00:00
|
|
|
//~^ERROR: cannot call non-const function
|