mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
9 lines
133 B
Rust
9 lines
133 B
Rust
#![allow(warnings)]
|
|
#![crate_name = "a"]
|
|
#![crate_type = "rlib"]
|
|
|
|
pub fn foo(b: u8) -> u32 { b as u32 }
|
|
|
|
#[cfg(rpass1)]
|
|
fn bar() { }
|