We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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()); }