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