summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/return_private.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-json/return_private.rs')
-rw-r--r--src/test/rustdoc-json/return_private.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/rustdoc-json/return_private.rs b/src/test/rustdoc-json/return_private.rs
deleted file mode 100644
index a8d1fae30..000000000
--- a/src/test/rustdoc-json/return_private.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Regression test for <https://github.com/rust-lang/rust/issues/96161>.
-// ignore-tidy-linelength
-
-#![feature(no_core)]
-#![no_core]
-
-mod secret {
- pub struct Secret;
-}
-
-// @is "$.index[*][?(@.name=='get_secret')].kind" \"function\"
-// @is "$.index[*][?(@.name=='get_secret')].inner.decl.output.inner.name" \"secret::Secret\"
-pub fn get_secret() -> secret::Secret {
- secret::Secret
-}