]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/source/issue-3253/lib.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / source / issue-3253 / lib.rs
1 #[macro_use]
2 extern crate cfg_if;
3
4 cfg_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 }