]> git.proxmox.com Git - rustc.git/blame - src/test/ui/dupe-first-attr.rc
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / 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
970d7e83
LB
21#[cfg(target_os = "android")]
22mod hello;
23
1a4d82fc 24pub fn main() { }