mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
12 lines
167 B
Rust
12 lines
167 B
Rust
//@ build-pass
|
|
#![allow(unused_attributes)]
|
|
#![allow(dead_code)]
|
|
|
|
mod rustrt {
|
|
extern "C" {
|
|
pub fn rust_get_test_int() -> isize;
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|