2011-11-24 18:17:26 -06:00
|
|
|
// Regression test for a problem with the first mod attribute
|
|
|
|
// being applied to every mod
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2011-11-24 18:17:26 -06:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
mod hello;
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
mod hello;
|
|
|
|
|
2014-08-10 23:26:45 -05:00
|
|
|
#[cfg(target_os = "windows")]
|
2011-12-30 02:18:55 -06:00
|
|
|
mod hello;
|
|
|
|
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
mod hello;
|
2013-04-22 21:31:54 -05:00
|
|
|
|
2014-07-30 19:23:35 -05:00
|
|
|
#[cfg(target_os = "dragonfly")]
|
|
|
|
mod hello;
|
|
|
|
|
2013-04-22 21:31:54 -05:00
|
|
|
#[cfg(target_os = "android")]
|
|
|
|
mod hello;
|
2013-04-29 18:16:58 -05:00
|
|
|
|
2014-01-03 17:30:54 -06:00
|
|
|
pub fn main() { }
|