rust/src/test/run-pass/dupe-first-attr.rc

15 lines
254 B
Plaintext
Raw Normal View History

// 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")]
2011-12-30 02:18:55 -06:00
mod hello;
#[cfg(target_os = "freebsd")]
mod hello;