We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fn
The following program compiles, and prints 1:
1
#![feature(const_extern_fn)] const extern "Rust" PUT_ANYTHING_YOU_WANT_HERE bug() -> usize { 1 } fn main() { dbg!(bug()); }