summary refs log tree commit diff
path: root/src/test/run-pass/dupe-first-attr.rc
blob: 663bc50fd0259376d9820cf27fbf9f73981bdc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;

#[cfg(target_os = "freebsd")]
mod hello;