]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-3253/lib.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-3253 / lib.rs
CommitLineData
f20569fa
XL
1#[macro_use]
2extern crate cfg_if;
3
4cfg_if! {
5 if #[cfg(target_family = "unix")] {
6 mod foo;
7 #[path = "paths/bar_foo.rs"]
8 mod bar_foo;
9 } else {
10 mod bar;
11 #[path = "paths/foo_bar.rs"]
12 mod foo_bar;
13 }
14}