about summary refs log tree commit diff
path: root/tests/rustdoc/render-enum-variant-structlike-32395.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:13:39 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:47:18 +0200
commit4b6bc735079bc07928efe791fecc9ec6cba81fe1 (patch)
tree33e9485d6c6a72bb48479032c1727b0b1643b52e /tests/rustdoc/render-enum-variant-structlike-32395.rs
parentfa2b9227a1065f7618eb90b52f6f617a13c55b30 (diff)
downloadrust-4b6bc735079bc07928efe791fecc9ec6cba81fe1.tar.gz
rust-4b6bc735079bc07928efe791fecc9ec6cba81fe1.zip
Created `tests/rustdoc/enum` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/render-enum-variant-structlike-32395.rs')
-rw-r--r--tests/rustdoc/render-enum-variant-structlike-32395.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/rustdoc/render-enum-variant-structlike-32395.rs b/tests/rustdoc/render-enum-variant-structlike-32395.rs
deleted file mode 100644
index d4cefb2911d..00000000000
--- a/tests/rustdoc/render-enum-variant-structlike-32395.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-//@ aux-build:variant-struct.rs
-//@ build-aux-docs
-//@ ignore-cross-compile
-
-// https://github.com/rust-lang/rust/issues/32395
-#![crate_name="issue_32395"]
-
-//@ has variant_struct/enum.Foo.html
-//@ !hasraw - 'pub qux'
-//@ !hasraw - 'pub(crate) qux'
-//@ !hasraw - 'pub Bar'
-extern crate variant_struct;
-
-//@ has issue_32395/enum.Foo.html
-//@ !hasraw - 'pub qux'
-//@ !hasraw - 'pub(crate) qux'
-//@ !hasraw - 'pub Bar'
-pub use variant_struct::Foo;