mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
11 lines
193 B
Rust
11 lines
193 B
Rust
//@ revisions: cpass1 cpass2
|
|
//@ compile-flags: --crate-type cdylib
|
|
//@ needs-crate-type: cdylib
|
|
|
|
#![deny(unused_attributes)]
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn rust_no_mangle() -> i32 {
|
|
42
|
|
}
|