8 lines
75 B
Rust
8 lines
75 B
Rust
extern "C" {
|
|
fn overflow();
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { overflow() }
|
|
}
|