]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3253/lib.rs
Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix
[rust.git] / src / tools / rustfmt / tests / target / 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 }