mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
6 lines
114 B
Rust
6 lines
114 B
Rust
#![feature(export_stable)]
|
|
#![crate_type = "sdylib"]
|
|
|
|
#[export_stable]
|
|
pub extern "C" fn foo(x: i32) -> i32 { x }
|