rust/tests/ui/dupe-first-attr.rc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
394 B
Plaintext
Raw Normal View History

// Regression test for a problem with the first mod attribute
// being applied to every mod
// pretty-expanded FIXME #23616
#[cfg(target_os = "linux")]
mod hello;
#[cfg(target_os = "macos")]
mod hello;
#[cfg(target_os = "windows")]
2011-12-30 16:18:55 +08:00
mod hello;
#[cfg(target_os = "freebsd")]
mod hello;
2013-04-23 11:31:54 +09:00
2014-07-31 02:23:35 +02:00
#[cfg(target_os = "dragonfly")]
mod hello;
2013-04-23 11:31:54 +09:00
#[cfg(target_os = "android")]
mod hello;
pub fn main() { }