mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
433da1fc04
They pass fine.
9 lines
114 B
Rust
9 lines
114 B
Rust
#![crate_name = "a"]
|
|
#![crate_type = "dylib"]
|
|
|
|
#[cfg(x)]
|
|
pub fn foo(x: u32) { }
|
|
|
|
#[cfg(y)]
|
|
pub fn foo(x: i32) { }
|