Rust allows casting 0 to a function pointer type like `extern "Rust" fn()`. This is unsafe. ``` rusti: let f = 0 as extern "Rust" fn() -> int; f() -rusti:#rust- application terminated abnormally with signal 11 (Segmentation fault) ```