about summary refs log tree commit diff
path: root/tests/rustdoc/src-links
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 15:21:06 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:47:17 +0200
commit099f730dcf95404e3f272cb2690a25077b9f2a4b (patch)
tree4065d89794e5f8dda65e80e4275fe5062e272122 /tests/rustdoc/src-links
parentb796179f9888b0aff6edf9c393274d9f792a0700 (diff)
downloadrust-099f730dcf95404e3f272cb2690a25077b9f2a4b.tar.gz
rust-099f730dcf95404e3f272cb2690a25077b9f2a4b.zip
Created `tests/rustdoc/source-code-pages` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/src-links')
-rw-r--r--tests/rustdoc/src-links/compiletest-ignore-dir0
-rw-r--r--tests/rustdoc/src-links/fizz.rs1
-rw-r--r--tests/rustdoc/src-links/mod.rs19
3 files changed, 0 insertions, 20 deletions
diff --git a/tests/rustdoc/src-links/compiletest-ignore-dir b/tests/rustdoc/src-links/compiletest-ignore-dir
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/tests/rustdoc/src-links/compiletest-ignore-dir
+++ /dev/null
diff --git a/tests/rustdoc/src-links/fizz.rs b/tests/rustdoc/src-links/fizz.rs
deleted file mode 100644
index d2b76b1cec8..00000000000
--- a/tests/rustdoc/src-links/fizz.rs
+++ /dev/null
@@ -1 +0,0 @@
-pub struct Buzz;
diff --git a/tests/rustdoc/src-links/mod.rs b/tests/rustdoc/src-links/mod.rs
deleted file mode 100644
index 27b2396811a..00000000000
--- a/tests/rustdoc/src-links/mod.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-//! Dox
-pub mod bar {
-
-    /// Dox
-    pub mod baz {
-        /// Dox
-        pub fn baz() { }
-    }
-
-    /// Dox
-    pub trait Foobar { fn dummy(&self) { } }
-
-    pub struct Foo { x: i32, y: u32 }
-
-    pub fn prawns((a, b): (i32, u32), Foo { x, y }: Foo) { }
-}
-
-/// Dox
-pub fn modfn() { }