summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs')
-rw-r--r--src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs b/src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs
deleted file mode 100644
index b359dcea0..000000000
--- a/src/test/rustdoc/doc-notable_trait-mut_t_is_not_ref_t.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-//! Test case for [#78160].
-//!
-//! A SomeTrait that is implemented for `&mut T` should not be marked as
-//! "notable" for return values that are `&T`.
-//!
-//! [#78160]: https://github.com/rust-lang/rust/issues/78160
-
-#![feature(rustdoc_internals)]
-
-#[doc(primitive = "reference")]
-/// Some useless docs, wouhou!
-///
-/// We need to put this in here, because notable traits
-/// that are implemented on foreign types don't show up.
-mod reference {}
-
-// @has doc_notable_trait_mut_t_is_not_ref_t/fn.fn_no_matches.html
-// @!has - '//code[@class="content"]' "impl<'_, I> Iterator for &'_ mut I"
-pub fn fn_no_matches<'a, T: Iterator + 'a>() -> &'a T {
- loop {}
-}