mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
10 lines
116 B
Rust
10 lines
116 B
Rust
//@ run-pass
|
|
|
|
#[cfg(target_abi = "eabihf")]
|
|
pub fn main() {
|
|
}
|
|
|
|
#[cfg(not(target_abi = "eabihf"))]
|
|
pub fn main() {
|
|
}
|