mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
11 lines
157 B
Rust
11 lines
157 B
Rust
#![feature(decl_macro)]
|
|
|
|
macro m($f:ident) {
|
|
#[export_name = "export_function_name"]
|
|
pub fn $f() -> i32 {
|
|
2
|
|
}
|
|
}
|
|
|
|
m!(rust_function_name);
|