mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
11 lines
182 B
Rust
11 lines
182 B
Rust
//@ build-pass
|
|
//@ needs-crate-type: cdylib
|
|
|
|
#![crate_type = "cdylib"]
|
|
|
|
#[export_name = "foo.0123"]
|
|
pub extern "C" fn foo() {}
|
|
|
|
#[export_name = "EXPORTS"]
|
|
pub extern "C" fn bar() {}
|