summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/cfg_mod
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/rustfmt/tests/target/cfg_mod
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/rustfmt/tests/target/cfg_mod')
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/bar.rs3
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir2/wasm32.rs3
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir3/wasm32.rs3
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/foo.rs3
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/mod.rs10
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/other.rs3
-rw-r--r--src/tools/rustfmt/tests/target/cfg_mod/wasm32.rs3
7 files changed, 28 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/bar.rs b/src/tools/rustfmt/tests/target/cfg_mod/bar.rs
new file mode 100644
index 000000000..20dc5b4a0
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/bar.rs
@@ -0,0 +1,3 @@
+fn bar() -> &str {
+ "bar"
+}
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir2/wasm32.rs b/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir2/wasm32.rs
new file mode 100644
index 000000000..ac437e422
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir2/wasm32.rs
@@ -0,0 +1,3 @@
+fn wasm32() -> &str {
+ "wasm32"
+}
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir3/wasm32.rs b/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir3/wasm32.rs
new file mode 100644
index 000000000..ac437e422
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/dir/dir1/dir3/wasm32.rs
@@ -0,0 +1,3 @@
+fn wasm32() -> &str {
+ "wasm32"
+}
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/foo.rs b/src/tools/rustfmt/tests/target/cfg_mod/foo.rs
new file mode 100644
index 000000000..053c8e6f3
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/foo.rs
@@ -0,0 +1,3 @@
+fn foo() -> &str {
+ "foo"
+}
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/mod.rs b/src/tools/rustfmt/tests/target/cfg_mod/mod.rs
new file mode 100644
index 000000000..45ba86f11
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/mod.rs
@@ -0,0 +1,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;
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/other.rs b/src/tools/rustfmt/tests/target/cfg_mod/other.rs
new file mode 100644
index 000000000..5929b8dcf
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/other.rs
@@ -0,0 +1,3 @@
+fn other() -> &str {
+ "other"
+}
diff --git a/src/tools/rustfmt/tests/target/cfg_mod/wasm32.rs b/src/tools/rustfmt/tests/target/cfg_mod/wasm32.rs
new file mode 100644
index 000000000..ac437e422
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/cfg_mod/wasm32.rs
@@ -0,0 +1,3 @@
+fn wasm32() -> &str {
+ "wasm32"
+}