summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/cfg_mod/mod.rs
blob: 45ba86f11b3f5e8ed23a51306af22ab42a2d850f (plain)
1
2
3
4
5
6
7
8
9
10
#[cfg_attr(feature = "foo", path = "foo.rs")]
#[cfg_attr(not(feture = "foo"), path = "bar.rs")]
mod sub_mod;

#[cfg_attr(target_arch = "wasm32", path = "dir/dir1/dir2/wasm32.rs")]
#[cfg_attr(not(target_arch = "wasm32"), path = "dir/dir1/dir3/wasm32.rs")]
mod wasm32;

#[some_attr(path = "somewhere.rs")]
mod other;