mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +00:00
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
|
// Regression test for a problem with the first mod attribute
|
||
|
// being applied to every mod
|
||
|
|
||
|
#[cfg(target_os = "linux")]
|
||
|
mod hello;
|
||
|
|
||
|
#[cfg(target_os = "macos")]
|
||
|
mod hello;
|
||
|
|
||
|
#[cfg(target_os = "win32")]
|
||
|
mod hello;
|