mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-19 10:24:16 +00:00
8 lines
75 B
Rust
8 lines
75 B
Rust
extern "C" {
|
|
fn overflow();
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { overflow() }
|
|
}
|