]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/dupe-first-attr.rc
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / run-pass / dupe-first-attr.rc
CommitLineData
223e47cc
LB
1// Regression test for a problem with the first mod attribute
2// being applied to every mod
3
c34b1796
AL
4// pretty-expanded FIXME #23616
5
223e47cc
LB
6#[cfg(target_os = "linux")]
7mod hello;
8
9#[cfg(target_os = "macos")]
10mod hello;
11
1a4d82fc 12#[cfg(target_os = "windows")]
223e47cc
LB
13mod hello;
14
15#[cfg(target_os = "freebsd")]
16mod hello;
970d7e83 17
1a4d82fc
JJ
18#[cfg(target_os = "dragonfly")]
19mod hello;
20
c34b1796
AL
21#[cfg(target_os = "bitrig")]
22mod hello;
23
970d7e83
LB
24#[cfg(target_os = "android")]
25mod hello;
26
1a4d82fc 27pub fn main() { }