The following program compiles, and prints `1`: ```Rust #![feature(const_extern_fn)] const extern "Rust" PUT_ANYTHING_YOU_WANT_HERE bug() -> usize { 1 } fn main() { dbg!(bug()); } ```